package eu.dnetlib.data.proto.wds; import "Dataset.proto"; import "FieldType.proto"; option java_package = "eu.dnetlib.data.proto"; option java_outer_classname = "WdsDatasetProtos"; message otherRelationIdentifier { required string id = 1; optional string type = 2; } message otherRelation { required otherRelationIdentifier target = 1; required string relationSemantic = 2; optional string targetType = 3; } message WdsDataset { extend Dataset.Metadata { repeated GeoLocation geolocation = 100; repeated otherRelation otherRels = 101; repeated ProjectRelation projects = 102; } message GeoLocation { optional string point = 1; repeated string box = 2; optional string place = 3; } }