Institutional affiliation with optional sub-unit hierarchy
Properties
children
array
of ref#affiliation
Optional
Sub-units (schools, departments, labs, etc.)
maxLength: 10 itemsinstitutionUri
string
at-uri
Optional
AT-URI to institution or unit node in knowledge graph
name
string
Required
Organization or unit name
maxLength: 300 bytesrorId
string
Optional
ROR identifier URL
maxLength: 100 bytesView raw schema
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"maxLength": 300,
"description": "Organization or unit name"
},
"rorId": {
"type": "string",
"maxLength": 100,
"description": "ROR identifier URL"
},
"children": {
"type": "array",
"items": {
"ref": "#affiliation",
"type": "ref"
},
"maxLength": 10,
"description": "Sub-units (schools, departments, labs, etc.)"
},
"institutionUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI to institution or unit node in knowledge graph"
}
},
"description": "Institutional affiliation with optional sub-unit hierarchy"
}