Skip to main content

Event


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

Event Minimal Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "Event",
"@id": "https://example.org/events/future-cities-2025",
"name": "Some Event",
"startDate": "2021-05-10T13:00:00+02:00",
"endDate": "2021-05-11T13:00:00+02:00",
"url": "https://example.org/events/future-cities-2025"
}
Event Recommended Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "Event",
"@id": "https://example.org/events/future-cities-2025",
"name": "Some Event",
"startDate": "2021-05-10T13:00:00+02:00",
"endDate": "2021-05-11T13:00:00+02:00",
"keywords": [
"keyword1",
"keyword2",
"keyword3"
],
"url": "https://example.org/events/future-cities-2025",
"location": "Aachen, Germany",
"organizer": [
{
"@type": "Organization",
"@id": "https://ror.org/xxxxxxxxx",
"name": "Some Organization"
},
{
"@type": "Person",
"@id": "https://orcid.org/xxxx-xxxx-xxxx-xxxx",
"name": "John Doe"
}
],
"contributor": [
{
"@type": "Organization",
"@id": "https://ror.org/xxxxxxxxx",
"name": "Some Organization"
},
{
"@type": "Person",
"@id": "https://orcid.org/xxxx-xxxx-xxxx-xxxx",
"name": "John Doe"
}
]
}