Project

General

Profile

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

    
4
    import idl "DocumentClasses.avdl";
5

    
6
    record DocumentToDocumentClasses {
7
//      foreign key: Document.id ("document" data store)
8
        string documentId;
9
//      Information about the classes given document belongs to
10
//      There might be many parallel classification systems given document might belong to 
11
//      (e.g. classification w.r.t. importance of the document, classification w.r.t. popularity).
12
        union { null , DocumentClasses } classes = null;
13
    }
14
}
(3-3/3)