@namespace("eu.dnetlib.iis.referenceextraction.project.schemas") protocol IIS{ record DocumentToProject { // document identifier, foreign key: DocumentWithBasicMetadata.id ("document basic metadata" data store) string documentId; // identifier of project being funding source of this document, // foreign key: Project.id string projectId; // Find more details on `confidenceLevel` constraints in eu/dnetlib/iis/README.markdown file. union { null , float } confidenceLevel = null; } }