Project

General

Profile

1
package eu.dnetlib.data.proto.wds;
2

    
3
import "Dataset.proto";
4

    
5
option java_package = "eu.dnetlib.data.proto";
6
option java_outer_classname = "WdsDatasetProtos";
7

    
8

    
9

    
10
message otherRelationIdentifier {
11
	required string id = 1;
12
	optional string type = 2;
13
}
14

    
15
message otherRelation {
16
	required otherRelationIdentifier target  = 1;
17
	required string relationSemantic = 2;
18
	optional string targetType = 3;
19
}
20

    
21
message WdsDataset {
22

    
23
	extend Dataset.Metadata {
24
		repeated GeoLocation geolocation = 100;
25
		repeated otherRelation otherRels = 101;
26
	}
27

    
28
	message GeoLocation {
29
		optional string point = 1;
30
		repeated string box = 2;
31
		optional string place = 3;
32
	}
33

    
34
}
(2-2/2)