Project

General

Profile

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

    
4
    record DocumentToDataSet {
5
//      document ID, foreign key: DocumentText.id
6
        string documentId;
7
//      dataset ID, foreign key: DataSetReference.id
8
        string datasetId; 
9
//		Find more details on `confidenceLevel` constraints in eu/dnetlib/iis/README.markdown file.
10
        union { null , float } confidenceLevel = null;
11
    }
12
}
    (1-1/1)