Skip to main content

Document


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

Document Minimal Example
{
"@context": "https://schema.org/",
"@type": [
"ScholarlyArticle",
"Article",
"Report",
"Thesis",
"Book",
"Chapter",
"Periodical",
"Text"
],
"@id": "https://doi.org/10.1234/helmholtz-2026-master-ref",
"name": "Integrating Graph Neural Networks in Climate Simulation Workflows",
"description": "A comprehensive doctoral thesis and subsequent report detailing the application of GNNs for localized weather prediction in high-performance computing environments.",
"datePublished": "2026-01-13",
"license": "https://creativecommons.org/licenses/by/4.0/",
"author": [
{
"@type": "Person",
"name": "John Doe",
"@id": "https://orcid.org/0000-0000-0000-0000"
}
]
}
Document Recommended Example
{
"@context": "https://schema.org/",
"@type": [
"ScholarlyArticle",
"Article",
"Report",
"Thesis",
"Book",
"Chapter",
"Periodical",
"Text"
],
"@id": "https://doi.org/10.1234/helmholtz-2026-master-ref",
"name": "Integrating Graph Neural Networks in Climate Simulation Workflows",
"description": "A comprehensive doctoral thesis and subsequent report detailing the application of GNNs for localized weather prediction in high-performance computing environments.",
"url": "https://publications.helmholtz.de/record/99999",
"datePublished": "2026-01-13",
"version": "1.2.0",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keywords": [
"keyword1",
"keyword2",
"keyword3"
],
"author": [
{
"@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"
}
]
},
"isPartOf": {
"@type": "CreativeWork",
"name": "Some CreativeWork",
"issn": "1234-5678"
},
"citation": [
{
"@type": "CreativeWork",
"name": "Some CreativeWork"
}
]
}