Project

General

Profile

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

    
4
    record DocumentSimilarity {
5
//      document identifier
6
//      foreign key: Document.id ("updated document" data store)
7
        string documentId;
8
//      identifier of a similar document,
9
//      foreign key: Document.id ("updated document" data store)
10
        string otherDocumentId;
11
//      level of similarity: coefficient from [0, 1] range,
12
//      the greater the number, the more similar the documents
13
        union { null , float } similarity = null;
14
    }
15
}
(2-2/2)