Skip to content

Commit

Permalink
add new property conform to
Browse files Browse the repository at this point in the history
  • Loading branch information
mispichtig committed Dec 11, 2023
1 parent 60a6133 commit 388f08c
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 0 deletions.
22 changes: 22 additions & 0 deletions source/content/glossar/bibliothek/dcat-ap-ch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,9 @@ Translatable elements are marked as such under usage notes.
* - :fa:`exclamation` :ref:`documentation <dcat-dataset-documentation>`
- dct:documentation
- optional, :fa:`exclamation` new property
* - :fa:`exclamation` :ref:`conforms to <dcat-dataset-conforms-to>`
- dct:conformsTo
- optional, :fa:`exclamation` new property


.. list-table:: Properties of dcat:Distribution
Expand Down Expand Up @@ -676,7 +679,26 @@ foaf:page (DCAT)
:header: Property ``foaf:page`` of ``dcat:Dataset`` in Rdf/xml

.. include:: dcat-examples/dataset-documentation-rdf.rst

.. _dcat-dataset-conforms-to:

dct:conformsTo (DCAT)
^^^^^^^^^^^^^^^^^^^^^^^^

.. container:: Mapping

.. include:: dcat-definitions/dataset-conforms-to.rst

.. toggle-header::
:header: Property ``dct:conformsTo`` of ``dcat:Dataset`` in Turtle

.. include:: dcat-examples/dataset-conforms-to-ttl.rst

.. toggle-header::
:header: Property ``dct:conformsTo`` of ``dcat:Dataset`` in Rdf/xml

.. include:: dcat-examples/dataset-conforms-to-rdf.rst

.. _dcat-dataset-keyword:

dcat:keyword (DCAT)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
:DCAT URI: dct:conformsTo
:Domain: dcat:Dataset
:Value: ``dct:Standard``
:Requirement Level: Optional
:Cardinality: 0..n
:Description: This property refers to an implementing rule or other specification.
:Usage Notes: This property SHOULD be used to indicate the model, schema, ontology, view or profile that this representation of a dataset conforms to. This is (generally) a complementary concern to the format or media-type.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.. code-block:: xml
:emphasize-lines: 7
<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dcat="http://www.w3.org/ns/dcat#"
xmlns:dct="http://purl.org/dc/terms/">
<dcat:Dataset rdf:about="https://fr.ch/strassenverkehr">
<dct:conformsTo rdf:resource="http://models.geo.admin.ch/ASTRA"/>
</dcat:Dataset>
</rdf:RDF>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.. code-block:: Turtle
:emphasize-lines: 6,7,8,9,10
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
<https://fr.ch/strassenverkehr>
a dcat:Dataset ;
dct:conformsTo <http://models.geo.admin.ch/ASTRA> .

0 comments on commit 388f08c

Please sign in to comment.