mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-13 02:04:29 +00:00
23 lines
332 B
GraphQL
23 lines
332 B
GraphQL
type NamedThing
|
|
{
|
|
id: Uriorcurie!
|
|
name: String
|
|
description: String
|
|
}
|
|
|
|
type Namespaces
|
|
{
|
|
id: Uriorcurie!
|
|
name: String
|
|
description: String
|
|
primaryEmail: String
|
|
birthDate: Date
|
|
ageInYears: Integer
|
|
vitalStatus: PersonStatus
|
|
}
|
|
|
|
type NamespacesCollection
|
|
{
|
|
entries: [Namespaces]
|
|
}
|
|
|