mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-12 17:54:29 +00:00
24 lines
332 B
GraphQL
24 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]
|
||
|
}
|
||
|
|