mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-13 02:04:29 +00:00
24 lines
460 B
Protocol Buffer
24 lines
460 B
Protocol Buffer
|
// A generic grouping for any identifiable entity
|
||
|
message NamedThing
|
||
|
{
|
||
|
uriorcurie id = 0
|
||
|
string name = 0
|
||
|
string description = 0
|
||
|
}
|
||
|
// Represents a Namespaces
|
||
|
message Namespaces
|
||
|
{
|
||
|
uriorcurie id = 0
|
||
|
string name = 0
|
||
|
string description = 0
|
||
|
string primaryEmail = 0
|
||
|
date birthDate = 0
|
||
|
integer ageInYears = 0
|
||
|
personStatus vitalStatus = 0
|
||
|
}
|
||
|
// A holder for Namespaces objects
|
||
|
message NamespacesCollection
|
||
|
{
|
||
|
repeated namespaces entries = 0
|
||
|
}
|