Skip to main content

Institution


Here you can find a minimal and a full example for a Institution that fits the HKG Data Model.

Institution Minimal Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "Organization",
"@id": "https://ror.org/xxxxxxxxx",
"name": "Some Organization"
}
Institution Recommended Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "Organization",
"@id": "https://ror.org/xxxxxxxxx",
"name": "Some Organization",
"alternateName": [
"Some Research Institute",
"SRI"
],
"disambiguatingDescription": "A short description of the organization used to disambiguate from other, similar organizations.",
"url": "https://example.org/some-research-institution",
"parentOrganization": {
"@type": "Organization",
"@id": "https://ror.org/yyyyyyyyy",
"name": "Some Organization"
},
"subOrganization": [
{
"@type": "Organization",
"@id": "https://ror.org/zzzzzzzzz",
"name": "Some Organization"
}
]
}