Project

General

Profile

1 18217 marek.hors
@namespace("eu.dnetlib.iis.documentsclustering.schemas")
2 17109 marek.hors
protocol IIS{
3
4 24059 mateusz.ko
    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 17109 marek.hors
}