Project

General

Profile

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

    
4
    import idl "AuthorMetrics.avdl";
5
    
6
    record AuthorToAuthorMetrics {
7
//      ID of the author, foreign key: Person.id ("person" data store)
8
        string personId;
9
        union { null , AuthorMetrics } metrics = null;
10
    }
11
    
12
}
13

    
(2-2/4)