nwb-linkml/nwb-schema-linkml/project/protobuf/nwb_schema_language.proto

23 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
}