Project

General

Profile

1 18206 marek.hors
@namespace("eu.dnetlib.iis.referenceextraction.dataset.schemas")
2 17109 marek.hors
protocol IIS{
3
4 24059 mateusz.ko
    record DocumentToDataSet {
5
//      document ID, foreign key: DocumentText.id
6
        string documentId;
7
//      dataset ID, foreign key: DataSetReference.id
8
        string datasetId;
9 32562 marek.hors
//		Find more details on `confidenceLevel` constraints in eu/dnetlib/iis/README.markdown file.
10 24059 mateusz.ko
        union { null , float } confidenceLevel = null;
11
    }
12 17109 marek.hors
}