Project

General

Profile

1
@namespace("eu.dnetlib.iis.documentssimilarity_with_fulltext.schemas")
2
protocol IIS{
3
    import idl "../importer/Person.avdl";
4

    
5
    record DocumentMetadata {
6
        string id;
7
        union { null , string } title = null;
8
        union { null , string } abstract = null;
9
//      document fulltext
10
//      warning: may be a raw, non-normalised text,
11
//      i.e. may contain non-alphanumeric characters, page numbers, etc.
12
        union { null , string } text = null;
13
        union { null , array<string> } keywords = null;
14
        union { null , array<eu.dnetlib.iis.importer.schemas.Person> } authors = null;
15
    }
16
}
(1-1/2)