Project

General

Profile

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

    
4
    record Cluster {
5
//      ID of the cluster
6
        int id;
7
//      pointer to parent cluster, null in case of root cluster,
8
//      foreign key: Cluster.id ("cluster" data store)
9
        union { null , int } parent = null;
10
//      name of cluster (possibly empty in case of all clusters except for the root cluster)
11
        union { null , string } name = null;
12
    }
13
    
14
}
(1-1/3)