Project

General

Profile

1
@namespace("eu.dnetlib.iis.metadataextraction.schemas")
2
protocol IIS{
3

    
4
    record DocumentText {
5
//      document identifier
6
//      foreign key: DocumentMetadata.id ("raw document metadata" data store)
7
        string id;
8
//      document fulltext
9
        union { null , string } text = null;
10
    }
11
}
(2-2/6)