Skip to main content

DataCatalog


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

DataCatalog Minimal Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "DataCatalog",
"@id": "https://purls.helmholtz-metadaten.de/hkg/catalog/001",
"name": "DataCatalog name",
"url": "https://somedomain.com"
}
DataCatalog Recommended Example
{
"@context": {
"@vocab": "https://schema.org/"
},
"@type": "DataCatalog",
"@id": "https://purls.helmholtz-metadaten.de/hkg/catalog/001",
"name": "DataCatalog name",
"url": "https://somedomain.com",
"disambiguatingDescription": "A brief description about the catalog.",
"abstract": "A short description that summarizes the Data Cataloge.",
"contributor": [
{
"@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"
}
],
"dateCreated": "yyyy-mm-dd",
"conditionsOfAccess": "unrestricted access according to cc-by-4.0",
"publisher": {
"@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"
}
]
},
"description": "A description of the item."
}