Skip to main content

Person


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

Person Minimal Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "Person",
"@id": "https://orcid.org/xxxx-xxxx-xxxx-xxxx",
"name": "John Doe"
}
Person Recommended Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "Person",
"@id": "https://orcid.org/xxxx-xxxx-xxxx-xxxx",
"name": "John Doe",
"givenName": "John",
"familyName": "Doe",
"url": "https://example.org/people/john-doe",
"affiliation": [
{
"@type": "Organization",
"@id": "https://ror.org/xxxxxxxxx",
"name": "Some Organization"
},
{
"@type": "Organization",
"@id": "https://ror.org/xxxxxxxxx",
"name": "Some Organization"
}
]
}