...
Table of Contents | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Page Properties | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||
|
📌 Introduction
Before you can add your resource’s metadata to the National Health Data Catalogue, you will need to know what metadata are, where your metadata are located and what metadata is needed for the Catalogue. Independent of how you will add your metadata to a FAIR Data Point (manually or automatically), you will need to map your metadata values to the Catalogue’s metadata schema.
...
For specific details on the schema, please visit the Github specifications dedicated for data experts or data stewards: Currently, we are transferring to a new version of the metadata schema: v2, available on Github here. Specifications from the official v1 release are available here.
...
A UML diagram is a visual representation of a metadata schema. The UML of the v2 metadata schema of Health-RI is depicted below.
A UML is divided by class (the boxes in the UML below), where each box represents a class of the schema. Within each class, the relevant properties are listed with the property URI, the range, requirement level and cardinality.
For example, in the UML below you see the box for dcat:Dataset
(class), containing the mandatory property dct:title
with range rdfs:Literal
and cardinality [1..n]. The dcat:Dataset
class also contains the property dcat:distribution
with range dcat:Distribution
(cardinality [0..n]). As you can see from the capital letter in the range of the property, this property is pointing to another class (dcat:Distribution
) also present in the UML. The connection between these classes is also indicated by the open arrow from the dcat:Dataset
class to the dcat:Distribution
class.
While open arrows indicate connections between classes, closed arrows indicate that a certain class inherits all properties from another class. For example, the dcat:Dataset
inherits from dcat:Resource
, indicating that all properties from dcat:Resource
can also be used in dcat:Dataset
. Note that this does not mean that also the values are inherited, but only the ('empty') properties.
Nested classes:
It is possible that a class refers to (another instance) of the same class, e.g. dcat:Catalog
pointing to itself via the property dct:hasPart
. These kind of nested structures can be used to describe the structure of an institution or infrastructure in more detail, for example if an institute (described by dcat:Catalog
) is divided into several independent departments (each described with its one instance of dcat:Catalog
) that produce and publish their own sets of dcat:Dataset
.
...