Skip to main content

Dataset


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

Dataset Minimal Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "Dataset",
"@id": "https://www.doi.org/10.1234/dataset123",
"name": "Dataset name",
"description": "Dataset measuring urban heat intensity across major European cities.",
"identifier": "doi:10.1234/dataset123",
"creator": {
"@type": "Organization",
"@id": "https://ror.org/xxxxxxxxx",
"name": "Some Research Center"
},
"datePublished": "2025-01-15",
"license": "https://spdx.org/licenses/CC-BY-4.0",
"url": "https://example.org/dataset/dataset123"
}
Dataset Recommended Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "Dataset",
"@id": "https://www.doi.org/10.1234/dataset123",
"name": "Dataset name",
"description": "A dataset measuring some mesaures.",
"version": "2.0",
"url": "https://example.org/dataset/dataset123",
"dateCreated": "2024-12-01",
"dateModified": "2025-01-10",
"datePublished": "2025-01-15",
"license": "https://spdx.org/licenses/CC-BY-4.0",
"conditionsOfAccess": "Open for academic research only",
"keywords": [
"keyword1",
"keyword2",
"keyword3"
],
"includedInDataCatalog": {
"@type": "DataCatalog",
"@id": "https://purls.helmholtz-metadaten.de/hkg/catalog/001",
"name": "DataCatalog name",
"url": "https://somedomain.com"
},
"isPartOf": {
"@type": "Dataset",
"@id": "https://example.org/dataset/european-climate-series",
"name": "European Climate Data Series"
},
"creator": [
{
"@type": "Organization",
"@id": "https://ror.org/xxxxxxxxx",
"name": "Some Organization"
},
{
"@type": "Person",
"@id": "https://orcid.org/xxxx-xxxx-xxxx-xxxx",
"name": "John Doe"
}
],
"author": [
{
"@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"
}
],
"provider": {
"@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"
}
]
},
"citation": [
{
"@type": "CreativeWork",
"name": "Dataset Paper",
"url": "https://example.org/publication/paper213"
}
]
}