dnet45/modules/dnet-openaire-data-protos/branches/IIS-CDH-5.3.0/src/main/resources/eu/dnetlib/data/proto/Result_Organization.proto @ 47056
1 |
package eu.dnetlib.data.proto; |
---|---|
2 |
|
3 |
import "RelMetadata.proto"; |
4 |
|
5 |
option java_package = "eu.dnetlib.data.proto"; |
6 |
option java_outer_classname = "ResultOrganizationProtos"; |
7 |
|
8 |
message ResultOrganization { |
9 |
|
10 |
optional Affiliation affiliation = 1; |
11 |
|
12 |
message Affiliation { |
13 |
|
14 |
enum RelName { |
15 |
isAuthorInstitutionOf = 1; // Organization --> Result |
16 |
hasAuthorInstitution = 2; // Result --> Organization |
17 |
}
|
18 |
|
19 |
required RelMetadata relMetadata = 1; |
20 |
|
21 |
}
|
22 |
|
23 |
}
|