Project

General

Profile

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

    
4
    record Project {
5
//      InformationSpace project identifier
6
        string id;
7
//      project grant identifier, 6-digit number
8
        union { null , string } projectGrantId = null;
9
//      project acronym
10
        union { null , string } projectAcronym = null;
11
//      project funding class e.g. FP7 or WT
12
        union { null , string } fundingClass = null;
13
    }
14
}
(8-8/9)