Project

General

Profile

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

    
4
	import idl "ReferenceBasicMetadata.avdl";
5
	import idl "ReferenceMetadata.avdl";
6
    
7
    record ExtractedDocumentMetadata {
8
//      OpenAIRE identifier of the document
9
        string id;
10
//      Pubmed identifier of the document
11
        union { null , string } pmid = null;
12
//		pubmed entity type        
13
        string entityType;
14
//      name of journal in which the article is published
15
        union { null , string } journal = null;
16
//      references extracted from pfd document
17
        union { null , array<ReferenceMetadata> } references = null;
18
//      page range in which the article is published
19
        union { null , Range } pages = null;
20
    }
21

    
22
}
(1-1/3)