diff --git a/README.md b/README.md
index c3a94e5e6438ea15bde708d4f1495bf04cf38b4f..c93aa716ba7187c645e15bb6c4622235df8b91e4 100644
--- a/README.md
+++ b/README.md
@@ -92,12 +92,10 @@ Parameter | Type | Default | Description
 `ckanext.odsh.public_url` | `string` | - | The public URL, e.g., `https://opendata.schleswig-holstein.de`.
 `ckanext.odsh.showtestbanner` | `boolean` | `True` | Switches on the banner "test system". Must be `false` for production server.
 `ckanext.odsh.language_mapping` | `string` | `/usr/lib/ckan/default/src/ckanext-odsh/ckanext/odsh/resources/language_mapping.json` | Absolute path to language mapping file.
-`ckanext.odsh.subject_mapping` | `string` | `/usr/lib/ckan/default/src/ckanext-odsh/ckanext/odsh/resources/subject_mapping.json` | Absolute path to subject mapping file.
 `ckanext.odsh.spatial.mapping` | `string` | `/usr/lib/ckan/default/src/ckanext-odsh/ckanext/odsh/resources/schleswig-holstein_geojson.csv` | Absolute path to spatial mapping file. The mapping file is expected to be a tab-separated file with three columns: URI, spatial text, and JSON geometry.
 `ckanext.odsh.resource_formats_fallback_filepath` | `string` | `/usr/lib/ckan/default/src/ckanext-odsh/ckanext/odsh/resources/fileformats.rdf` | Absolute path to resource formats fallback file.
 `ckanext.odsh.require_at_least_one_category` | `boolean` | `False` |  Indicates whether the presence of at least one category is required during validation.
 `ckanext.odsh.require_spatial_uri` | `boolean` | `False` | Indicates whether a spatial URI is required for the dataset.
-`ckanext.odsh.require_subject` | `boolean` | `True` | Indicates whether a subject is required for a dataset.
 `ckanext.odsh.is_optional_temporal_start` | `boolean` | `False` | Indicate whether the `temporal_start` property is considered optional or not during validation.
 `ckanext.odsh.download_proxy` | `string` | `None` | Use proxy server to access the web, e.g., `http://1.2.3.4:4123`.
 `copy_remote_resources` | `boolean` | `False` | Indicates whether remote resources should be copied when creating a resource.
diff --git a/ckanext/odsh/helpers_tpsh.py b/ckanext/odsh/helpers_tpsh.py
index 58c5ff24a63daee925d6e4a54f0d3a5316e588cb..2f6c4988e04b06e88c90af16a496d308681fb5f4 100644
--- a/ckanext/odsh/helpers_tpsh.py
+++ b/ckanext/odsh/helpers_tpsh.py
@@ -92,13 +92,6 @@ def load_language_mapping():
 def load_json_to_ordered_dict(json_str):
     return json.loads(json_str, object_pairs_hook=OrderedDict)
 
-def load_subject_mapping():
-    extension_path = pkg_resources.resource_filename('ckanext.odsh', '')
-    file_path = config.get('ckanext.odsh.subject_mapping', extension_path + '/resources/subject_mapping.json')
-    with open(file_path) as subject_mapping_json:
-        SUBJECT_MAPPING = load_json_to_ordered_dict(subject_mapping_json.read())
-    return SUBJECT_MAPPING
-
 def get_language_of_package(pkg_dict):
     LANGUAGE_MAPPING = load_language_mapping()
     language_id = _get_language_id(pkg_dict)
@@ -163,13 +156,6 @@ def get_spatial_for_selection():
     unique_mapping.append({'key': '', 'value': ''})
     return unique_mapping
 
-def get_subject_for_selection():
-    SUBJECT_MAPPING = load_subject_mapping()
-    dict_for_select_box = [{'key': 'empty', 'value':' '}, ]
-    dict_for_select_box.extend(
-        [{'key': key, 'value': SUBJECT_MAPPING[key]} for key in SUBJECT_MAPPING]
-    )
-    return dict_for_select_box
 
 def get_language_for_selection():
     LANGUAGE_MAPPING = load_language_mapping()
diff --git a/ckanext/odsh/plugin.py b/ckanext/odsh/plugin.py
index a1f94235947df9e285ae47cb1f3406412c0dcc0f..6a8d8b88520ad44bad740a10cd3fbcaa9de8053d 100644
--- a/ckanext/odsh/plugin.py
+++ b/ckanext/odsh/plugin.py
@@ -325,7 +325,6 @@ class OdshPlugin(plugins.SingletonPlugin, DefaultTranslation, DefaultDatasetForm
                 'get_language_icon': helpers_tpsh.get_language_icon,
                 'short_name_for_category': odsh_helpers.short_name_for_category,
                 'get_spatial_for_selection': helpers_tpsh.get_spatial_for_selection,
-                'get_subject_for_selection': helpers_tpsh.get_subject_for_selection,
                 'get_language_for_selection': helpers_tpsh.get_language_for_selection,
                 'tpsh_get_resource_size': helpers_tpsh.get_resource_size,
                 'tpsh_get_address_org':helpers_tpsh.get_address_org,
diff --git a/ckanext/odsh/tests/test_validation.py b/ckanext/odsh/tests/test_validation.py
index ea1912d0d6fcec4bf12519a153f9b4cbd9c6d8fb..21c02780f9a978e06bd9ce486091362b04f71906 100644
--- a/ckanext/odsh/tests/test_validation.py
+++ b/ckanext/odsh/tests/test_validation.py
@@ -105,25 +105,3 @@ def test_validate_licenseAttributionByText():
             ('extras', 0, 'key'): 'licenseAttributionByText',
             ('extras', 0, 'value'): ''}
     validate_licenseAttributionByText('key', data, {}, None)
-
-
-def test_convert_subjectID_to_subjectText():
-    # arrange
-    data = {('extras', 0, 'subject'): 'subject',
-            ('extras', 0, 'subject'): 'Test_id'}
-    # act
-    convert_subjectID_to_subjectText('key', data, {}, None)
-    # assert
-    assert data[('extras', 1, 'key')] == 'subject_text'
-    assert data[('extras', 1, 'value')] == 'Test_subject'
-
-
-def test_exception_convert_subjectID_to_subjectText():
-    # arrange
-    data = {('extras', 0, 'subject'): 'subject',
-            ('extras', 0, 'subject'): 'Nicht_Vorhanden'}
-    # act
-    convert_subjectID_to_subjectText('key', data, {}, None)
-    #assert
-    assert data[('extras', 1, 'key')] == 'subject_text'
-    assert data[('extras', 1, 'value')] == ''
diff --git a/ckanext/odsh/tests_tpsh/resources/subject_mapping_for_tests.json b/ckanext/odsh/tests_tpsh/resources/subject_mapping_for_tests.json
deleted file mode 100644
index 2e8bd946d9237ed177f8d3759defc4732d2f8ddf..0000000000000000000000000000000000000000
--- a/ckanext/odsh/tests_tpsh/resources/subject_mapping_for_tests.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Verwaltungsvorschrift" : "Verwaltungsvorschrift",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Organisationsplan" : "Organisationsplan",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Geschaeftsverteilungsplan" : "Geschäftsverteilungsplan",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Aktenplan" : "Aktenplan",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Richtlinie" : "Richtlinie und Runderlass",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Statistik" : "amtliche Statistik",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Taetigkeitsbericht" : "Tätigkeitsbericht",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Broschuere" : "Broschüre",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Gutachten" : "Gutachten",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Studie" : "Studie",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Haushaltsplan" : "Haushaltsplan",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Stellenplan" : "Stellenplan",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Wirtschaftsplan" : "Wirtschaftsplan",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#ZuwendungAnPerson" : "Übersicht über Zuwendungen an juristische Personen des Privatrechts",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#ZuwendungAnLand" : "Übersicht über Zuwendungen an das Land Schleswig-Holstein",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#IZGAntwort" : "IZG/GvgV-Auskunft",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Gerichtsurteil" : "Gerichtsurteil",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#GesetzvorlageLandtag" : "Gesetzesvorlage an den Landtag",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#MitteilungLandtag" : "Mitteilung an den Landtag",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Unternehmensdaten" : "wesentliche Unternehmensdaten von Beteiligungen des Landes",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#VergütungsOG" : "jährliche Vergütungen nach dem VergütungsOG",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#Vertrag" : "Vertrag",
-    "http://transparenz.schleswig-holstein.de/informationsgegenstand#sonstiges" : "sonstiges"
-}
-    
\ No newline at end of file
diff --git a/ckanext/odsh/tests_tpsh/resources/transparenz.rdf b/ckanext/odsh/tests_tpsh/resources/transparenz.rdf
deleted file mode 100644
index ea4fb5e3c229d3e01feb3e4bb562f644cb8017da..0000000000000000000000000000000000000000
--- a/ckanext/odsh/tests_tpsh/resources/transparenz.rdf
+++ /dev/null
@@ -1,1145 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF xmlns:dcatde="http://dcat-ap.de/def/dcatde/1_0/" xmlns:dcat="http://www.w3.org/ns/dcat#" xmlns:dct="http://purl.org/dc/terms/"
-xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:schema="http://schema.org/">
-  <dcat:Catalog rdf:about="https://transparenz.schleswig-holstein.de/catalog">
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/9f9ae60bb0d8985e10e9ab8aa6a7ca34">
-        <dct:title>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2017)</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5768d5cdbc58abd45c8620e44e017f01" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/af_blano_fortschritt2017.pdf?__blob=publicationFile&amp;v=5">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/af_blano_fortschritt2017.pdf?__blob=publicationFile&amp;v=5" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2017)</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-05-02</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-05-02</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/ff612d0f165d46f3091f58e1ef56a2ec">
-        <dct:title>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2016)</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5768d5cdbc58abd45c8620e44e017f01" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/ae_blano_fortschritt2016.pdf?__blob=publicationFile&amp;v=6">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/ae_blano_fortschritt2016.pdf?__blob=publicationFile&amp;v=6" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2016)</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2017-04-10</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2017-04-10</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/3a0d0674120fbf06b5cb8737124e3fd0">
-        <dct:title>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2015)</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5768d5cdbc58abd45c8620e44e017f01" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/ad_blano_fortschritt2015.pdf?__blob=publicationFile&amp;v=8">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/ad_blano_fortschritt2015.pdf?__blob=publicationFile&amp;v=8" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2015)</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2016-07-10</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2016-07-10</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/b5cd3f303f594ecde96e1017e953b688">
-        <dct:title>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2014)</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5768d5cdbc58abd45c8620e44e017f01" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/ad_blano_fortschritt2014.pdf?__blob=publicationFile&amp;v=4">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/ad_blano_fortschritt2014.pdf?__blob=publicationFile&amp;v=4" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2014)</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-07-17</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-07-17</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/cd606b042789723a2b6d61cb31c46c39">
-        <dct:title>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2013)</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5768d5cdbc58abd45c8620e44e017f01" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/ac_blano_fortschritt2013.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/UXO/Berichte/PDF/Berichte/ac_blano_fortschritt2013.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt (Jahr 2013)</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2014-07-26</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2014-07-26</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/04640ac19a21450984d2af7c402d6aa0">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2006 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2006.pdf?__blob=publicationFile&amp;v=6">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2006.pdf?__blob=publicationFile&amp;v=6" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2006 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/86fe10eb6578e940d7df8e3d6da6520d">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2007 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2007.pdf?__blob=publicationFile&amp;v=6">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2007.pdf?__blob=publicationFile&amp;v=6" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2007 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/b0024265f96b9de5a590541f5e0aec91">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2008 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2008.pdf?__blob=publicationFile&amp;v=6">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2008.pdf?__blob=publicationFile&amp;v=6" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2008 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/ccb65ee5047e3c9cc67384b513400246">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2009 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2009.pdf?__blob=publicationFile&amp;v=6">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2009.pdf?__blob=publicationFile&amp;v=6" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2009 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/ae2a3cffda84388365bc87711ed4af47">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2010 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2010.pdf?__blob=publicationFile&amp;v=6">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2010.pdf?__blob=publicationFile&amp;v=6" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2010 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-29</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/91a479991245f208dd6f8ba82411a570">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2011 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2011.pdf?__blob=publicationFile&amp;v=6">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2011.pdf?__blob=publicationFile&amp;v=6" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2011 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-28</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-28</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/1ee93d311ae6078dc11655c2ca8865b5">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2012 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2012.pdf?__blob=publicationFile&amp;v=6">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2012.pdf?__blob=publicationFile&amp;v=6" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2012 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-28</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-28</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/f5123967a8d0d80ff135342ce41a09bb">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2013 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2013.pdf?__blob=publicationFile&amp;v=5">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2013.pdf?__blob=publicationFile&amp;v=5" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2013 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-28</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-28</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/05199f38b6234e794f79ad3726957a3e">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2014/15 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2015.pdf?__blob=publicationFile&amp;v=3">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2015.pdf?__blob=publicationFile&amp;v=3" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2014/15 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2016-07-14</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2016-07-14</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/ffef477b7ebb1447d869b33c79cac8e2">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2016/17 - Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2017.pdf?__blob=publicationFile&amp;v=3">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2017.pdf?__blob=publicationFile&amp;v=3" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2016/17 - Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-08-01</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-08-01</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/a1fea922aa7d9f7a924784615301da83">
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein 2015/16 – Bericht</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2016.pdf?__blob=publicationFile&amp;v=2">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/VIII/Service/Broschueren/Broschueren_VIII/Gesundheit/schuleinguntber2016.pdf?__blob=publicationFile&amp;v=2" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein 2015/16 – Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2017-11-27</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2017-11-27</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/423e1ea7e98b492aebc0ca5108c7b36d">
-        <dct:title>Jahresbericht 2017 zur biologischen Vielfalt - Jagd und Artenschutz</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/7ee94f73beb43faf4099208b4e55734b" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/V/Service/Broschueren/Broschueren_V/Umwelt/pdf/Jahresbericht_Zur_biologischen_Vielfalt_2017.pdf?__blob=publicationFile&amp;v=3">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/V/Service/Broschueren/Broschueren_V/Umwelt/pdf/Jahresbericht_Zur_biologischen_Vielfalt_2017.pdf?__blob=publicationFile&amp;v=3" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Jahresbericht 2017 zur biologischen Vielfalt - Jagd und Artenschutz</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-01-16</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-01-16</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/6ea87d1f4a92efb288ed53e2bf901880">
-        <dct:title>Jahresbericht 2018 zur biologischen Vielfalt - Jagd und Artenschutz</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/7ee94f73beb43faf4099208b4e55734b" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/V/Service/Broschueren/Broschueren_V/Umwelt/pdf/Jahresbericht_zur_biologischen_Vielfalt_2018.pdf?__blob=publicationFile&amp;v=2">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/V/Service/Broschueren/Broschueren_V/Umwelt/pdf/Jahresbericht_zur_biologischen_Vielfalt_2018.pdf?__blob=publicationFile&amp;v=2" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Jahresbericht 2018 zur biologischen Vielfalt - Jagd und Artenschutz</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-12-16</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-12-16</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/7f6ef434153bdbfff9ed42c8d9ee1381">
-        <dct:title>Jahresbericht 2016 zur biologischen Vielfalt – Jagd- und Artenschutz</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/7ee94f73beb43faf4099208b4e55734b" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Landesregierung/V/Service/Broschueren/Broschueren_V/Umwelt/pdf/biodiversitaetsbericht2016.pdf?__blob=publicationFile&amp;v=3">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Landesregierung/V/Service/Broschueren/Broschueren_V/Umwelt/pdf/biodiversitaetsbericht2016.pdf?__blob=publicationFile&amp;v=3" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Jahresbericht 2016 zur biologischen Vielfalt – Jagd- und Artenschutz</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2016-12-21</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2016-12-21</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/f681f52201dcf1b1ea467aeed683c8a2">
-        <dct:title>Waldzustandsbericht 2018</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2018.pdf?__blob=publicationFile&amp;v=2">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2018.pdf?__blob=publicationFile&amp;v=2" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2018</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-11-29</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-11-29</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/225ebaffe8e7a30483ac43935e91e1f4">
-        <dct:title>Waldzustandsbericht 2017</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht_2017.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht_2017.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2017</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2017-12-27</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2017-12-27</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/9f48b6c643a139a0b4e7eac2ab4cfbb0">
-        <dct:title>Waldzustandsbericht 2016</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2016.pdf?__blob=publicationFile&amp;v=3">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2016.pdf?__blob=publicationFile&amp;v=3" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2016</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2016-12-15</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2016-12-15</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/904ef47daad01d2979ab20dda18b2ae7">
-        <dct:title>Waldzustandsbericht 2015</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2015.pdf?__blob=publicationFile&amp;v=3">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2015.pdf?__blob=publicationFile&amp;v=3" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2015</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-31</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-12-31</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/2147dcaa148ff19a89fa99c989dd648e">
-        <dct:title>Waldzustandsbericht 2014</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2014.pdf?__blob=publicationFile&amp;v=2">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2014.pdf?__blob=publicationFile&amp;v=2" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2014</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2014-12-31</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2014-12-31</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/f201ecaf859f8e713cd030615bd3f5cb">
-        <dct:title>Waldzustandsbericht 2013</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2013.pdf?__blob=publicationFile&amp;v=2">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2013.pdf?__blob=publicationFile&amp;v=2" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2013</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2013-12-31</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2013-12-31</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/9bbeaf7b503dbd2c667786db08c4512d">
-        <dct:title>Waldzustandsbericht 2012</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2012.pdf?__blob=publicationFile&amp;v=2">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2012.pdf?__blob=publicationFile&amp;v=2" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2012</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2012-12-31</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2012-12-31</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/f6de9c145fe28effe99fc163b92d657e">
-        <dct:title>Waldzustandsbericht 2011</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2011.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2011.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2011</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2011-12-31</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2011-12-31</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/5d794a0f4064ba53b5047dbe36eef3ef">
-        <dct:title>Waldzustandsbericht 2010</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2010.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2010.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2010</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-12-31</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-12-31</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/0ac0c2ceb265a7c0ca18385c95ec6e3a">
-        <dct:title>Waldzustandsbericht 2009</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2009.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2009.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2009</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-12-31</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-12-31</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/2f21507e1dc4e9106e348a65bb9e5cfa">
-        <dct:title>Waldzustandsbericht 2008</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2008.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2008.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2008</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-01-06</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-01-06</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/1e4b51fbab78072693617fcc2458824e">
-        <dct:title>Waldzustandsbericht 2006/2007</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2006_2007.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2006_2007.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldzustandsbericht 2006/2007</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-02-18</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-02-18</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/ac543132dfecddfdaa9ef8385034323f">
-        <dct:title>Waldschadensbericht 2005</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2005.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2005.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldschadensbericht 2005</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2006-03-22</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2006-03-22</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-   <dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/f9727d9cfb4ad6f923a800e0f116b6e3">
-        <dct:title>Waldschadensbericht 2004</dct:title>
-
-   <dct:isVersionOf rdf:resource="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63" />
-        <dcat:distribution>
-          <dcat:Distribution rdf:about="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2004.pdf?__blob=publicationFile&amp;v=1">
-            <dct:title></dct:title>
-            <dcat:accessURL rdf:resource="https://www.schleswig-holstein.de/DE/Fachinhalte/W/wald/Downloads/Waldzustandsbericht2004.pdf?__blob=publicationFile&amp;v=1" />
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-            <dct:format  rdf:resource="http://publications.europa.eu/resource/authority/file-type/PDF" />
-            <dcat:mediaType>application/pdf</dcat:mediaType>
-          </dcat:Distribution>
-        </dcat:distribution>
-        <dct:subject rdf:resource="http://d-nb.info/gnd/4128022-2"/>
-        <dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE" />
-        <dct:description>Waldschadensbericht 2004</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU"/>
-        <dct:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2004-11-30</dct:issued>
-            <dct:license rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
-        <dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-07-15T14:55:00.00000</dct:modified>
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-        <dct:temporal>
-          <dct:PeriodOfTime>
-            <schema:startDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2004-11-30</schema:startDate>
-          </dct:PeriodOfTime>
-        </dct:temporal>
-      </dcat:Dataset>
-    </dcat:dataset>
-
-<dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/5768d5cdbc58abd45c8620e44e017f01">
-        <dct:type rdf:resource="http://dcat-ap.de/def/datasetTypes/collection" />
-        <dct:title>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt</dct:title>
-        <dct:description>Munitionsbelastung der deutschen Meeresgewässer – Entwicklungen und Fortschritt</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU" />
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/b5cd3f303f594ecde96e1017e953b688" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/9f9ae60bb0d8985e10e9ab8aa6a7ca34" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/ff612d0f165d46f3091f58e1ef56a2ec" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/3a0d0674120fbf06b5cb8737124e3fd0" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/cd606b042789723a2b6d61cb31c46c39" />
-
-      </dcat:Dataset>
-    </dcat:dataset>
-<dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/f1f2513c3899ecf6f15691e0e4412822">
-        <dct:type rdf:resource="http://dcat-ap.de/def/datasetTypes/collection" />
-        <dct:title>Schuleingangsuntersuchungen in Schleswig-Holstein – Bericht</dct:title>
-        <dct:description>Schuleingangsuntersuchungen in Schleswig-Holstein – Bericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU" />
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/ae2a3cffda84388365bc87711ed4af47" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/1ee93d311ae6078dc11655c2ca8865b5" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/91a479991245f208dd6f8ba82411a570" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/b0024265f96b9de5a590541f5e0aec91" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/04640ac19a21450984d2af7c402d6aa0" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/ffef477b7ebb1447d869b33c79cac8e2" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/a1fea922aa7d9f7a924784615301da83" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/86fe10eb6578e940d7df8e3d6da6520d" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/ccb65ee5047e3c9cc67384b513400246" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/f5123967a8d0d80ff135342ce41a09bb" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/05199f38b6234e794f79ad3726957a3e" />
-
-      </dcat:Dataset>
-    </dcat:dataset>
-<dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/5ffd27c528f7ab6936318da90d5cdd63">
-        <dct:type rdf:resource="http://dcat-ap.de/def/datasetTypes/collection" />
-        <dct:title>Waldzustandsbericht</dct:title>
-        <dct:description>Waldzustandsbericht</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU" />
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/1e4b51fbab78072693617fcc2458824e" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/0ac0c2ceb265a7c0ca18385c95ec6e3a" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/f9727d9cfb4ad6f923a800e0f116b6e3" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/904ef47daad01d2979ab20dda18b2ae7" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/5d794a0f4064ba53b5047dbe36eef3ef" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/2147dcaa148ff19a89fa99c989dd648e" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/f201ecaf859f8e713cd030615bd3f5cb" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/9bbeaf7b503dbd2c667786db08c4512d" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/ac543132dfecddfdaa9ef8385034323f" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/f6de9c145fe28effe99fc163b92d657e" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/f681f52201dcf1b1ea467aeed683c8a2" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/9f48b6c643a139a0b4e7eac2ab4cfbb0" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/225ebaffe8e7a30483ac43935e91e1f4" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/2f21507e1dc4e9106e348a65bb9e5cfa" />
-
-      </dcat:Dataset>
-    </dcat:dataset>
-<dcat:dataset>
-      <dcat:Dataset rdf:about="http://transparenz.schleswig-holstein.de/7ee94f73beb43faf4099208b4e55734b">
-        <dct:type rdf:resource="http://dcat-ap.de/def/datasetTypes/collection" />
-        <dct:title>Jahresbericht zur biologischen Vielfalt</dct:title>
-        <dct:description>Jahresbericht zur biologischen Vielfalt</dct:description>
-        <dct:language rdf:resource="http://publications.europa.eu/resource/authority/language/DEU" />
-        <dct:spatial>
-          <dct:Location rdf:about="http://dcat-ap.de/def/politicalGeocoding/stateKey/01" />
-        </dct:spatial>
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/423e1ea7e98b492aebc0ca5108c7b36d" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/6ea87d1f4a92efb288ed53e2bf901880" />
-
-        <dct:hasVersion rdf:resource="http://transparenz.schleswig-holstein.de/7f6ef434153bdbfff9ed42c8d9ee1381" />
-
-      </dcat:Dataset>
-    </dcat:dataset>
-</dcat:Catalog>
-</rdf:RDF>
-
diff --git a/ckanext/odsh/tests_tpsh/test_helper_pkg_dict.py b/ckanext/odsh/tests_tpsh/test_helper_pkg_dict.py
index 504966e83d62d42f8caa05914bdf3fe6cd4d660e..5b892b7baffca6196d6cffc9a49c7299302d7d80 100644
--- a/ckanext/odsh/tests_tpsh/test_helper_pkg_dict.py
+++ b/ckanext/odsh/tests_tpsh/test_helper_pkg_dict.py
@@ -141,7 +141,6 @@ class Test_get_date_start_and_end_from_pkg_dict(unittest.TestCase):
                 {'key': 'groups', 'value': ''}, 
                 {'key': 'issued', 'value': '2019-07-06T00:00:00'}, 
                 {'key': 'licenseAttributionByText', 'value': ''}, 
-                {'key': 'subject_text', 'value': ''}, 
                 {'key': 'temporal_end', 'value': '2019-08-31T00:00:00'}, 
                 {'key': 'temporal_start', 'value': '2019-08-01T00:00:00'}
             ],
@@ -151,7 +150,6 @@ class Test_get_date_start_and_end_from_pkg_dict(unittest.TestCase):
                 {'key': 'groups', 'value': ''}, 
                 {'key': 'issued', 'value': '2019-07-06T00:00:00'}, 
                 {'key': 'licenseAttributionByText', 'value': ''}, 
-                {'key': 'subject_text', 'value': ''}, 
                 {'key': 'temporal_end', 'value': '2019-08-31T00:00:00'}, 
                 {'key': 'temporal_start', 'value': ''}
             ],
@@ -161,7 +159,6 @@ class Test_get_date_start_and_end_from_pkg_dict(unittest.TestCase):
                 {'key': 'groups', 'value': ''}, 
                 {'key': 'issued', 'value': '2019-07-06T00:00:00'}, 
                 {'key': 'licenseAttributionByText', 'value': ''}, 
-                {'key': 'subject_text', 'value': ''}, 
                 {'key': 'temporal_end', 'value': ''}, 
                 {'key': 'temporal_start', 'value': '2019-08-01T00:00:00'}
             ],
diff --git a/ckanext/odsh/tests_tpsh/test_helpers_tpsh.py b/ckanext/odsh/tests_tpsh/test_helpers_tpsh.py
index aeb3d60db915102c9e806bbea5a13b0631cc9149..5726e79e16b51e9125e15e622daab50c8e5498c3 100644
--- a/ckanext/odsh/tests_tpsh/test_helpers_tpsh.py
+++ b/ckanext/odsh/tests_tpsh/test_helpers_tpsh.py
@@ -1,11 +1,8 @@
 # encoding: utf-8
 
-import os
 from collections import namedtuple, OrderedDict
-import datetime
 from mock import patch
 from ckan.common import config
-import ckan.logic.action.create as create
 from ckanext.odsh.tests_tpsh.resources import org_dicts
 import unittest
 
@@ -13,13 +10,10 @@ import unittest
 from ckanext.odsh.helpers_tpsh import (
     map_dct_type_to_ckan_type,
     map_ckan_type_to_dct_type,
-    add_pkg_to_collection,
     correct_missing_relationship,
     get_language_of_package,
     get_address_org,
     load_json_to_ordered_dict,
-    load_subject_mapping,
-    get_subject_for_selection
 )
 
 
@@ -207,11 +201,6 @@ class Test_get_address_org(unittest.TestCase):
         assert len(address) ==  0
 
 
-def _add_subject_mapping_file_to_config():
-    path_current_file = os.path.dirname(os.path.abspath(__file__))
-    path_to_subject_mapping_file = path_current_file + '/resources/subject_mapping_for_tests.json'
-    config.update({'ckanext.odsh.subject_mapping': path_to_subject_mapping_file})
-
 class Test_load_json_to_ordered_dict(unittest.TestCase):
     def setUp(self):
         json_str = '{"A": 1, "B": 2, "D": 3, "C":4, "E": 0}'
@@ -230,40 +219,3 @@ class Test_load_json_to_ordered_dict(unittest.TestCase):
     def test_it_preserves_order_of_values(self):
         values = list(self.result.values())
         assert values == [1, 2, 3, 4, 0]
-
-class Test_load_subject_mapping(unittest.TestCase):
-    def setUp(self):
-        _add_subject_mapping_file_to_config()
-        self.SUBJECT_MAPPING = load_subject_mapping()
-    
-    def tearDown(self):
-        config.clear()
-    
-    def test_it_returns_an_ordered_dictionary(self):
-        assert type(self.SUBJECT_MAPPING) is OrderedDict
-    
-    def test_it_preserves_order_of_json_file(self):
-        keys = list(self.SUBJECT_MAPPING.keys())
-        assert keys[0] ==  'http://transparenz.schleswig-holstein.de/informationsgegenstand#Verwaltungsvorschrift'
-        assert keys[1] ==  'http://transparenz.schleswig-holstein.de/informationsgegenstand#Organisationsplan'
-        assert keys[2] ==  'http://transparenz.schleswig-holstein.de/informationsgegenstand#Geschaeftsverteilungsplan'
-        assert keys[3] ==  'http://transparenz.schleswig-holstein.de/informationsgegenstand#Aktenplan'
-
-class Test_get_subject_for_selection(unittest.TestCase):
-    def setUp(self):
-        _add_subject_mapping_file_to_config()
-        self.result = get_subject_for_selection()
-    
-    def tearDown(self):
-        config.clear()
-
-    def test_it_returns_a_list(self):
-        assert type(self.result) is list
-    
-    def test_first_element_is_empty(self):
-        assert self.result[0] == {'key': 'empty', 'value': ' '}
-    
-    def test_it_contains_more_than_one_element(self):
-        assert len(self.result) > 1
-
-        
diff --git a/ckanext/odsh/tests_tpsh/test_profiles.py b/ckanext/odsh/tests_tpsh/test_profiles.py
index d0c00dea5e244f5b0355eb9a1b4ea4c874396fe8..4a1ac3f62fa941120b63da0cab396e8e22202e6f 100644
--- a/ckanext/odsh/tests_tpsh/test_profiles.py
+++ b/ckanext/odsh/tests_tpsh/test_profiles.py
@@ -59,30 +59,6 @@ class TestODSHDCATdeProfileParseDatasetWithCollection(unittest.TestCase):
         belongs_to_collection = self.profile._belongs_to_collection(
             dataset_dict, self.dataset_ref_with_member_not_in_collection)
         assert not belongs_to_collection
-    
-
-class TestODSHDCATdeProfileParseDatasetWithSubject(unittest.TestCase):
-    '''
-    Tests for ODSHDCATdeProfile.parse_dataset with an rdf file 
-    containing datasets with subjects
-    '''
-    def setUp(self):
-        rdf_graph = Graph()
-        rdf_graph.parse('ckanext/odsh/tests_tpsh/resources/transparenz.rdf')
-        self.profile = profiles.ODSHDCATdeProfile(rdf_graph)
-        self.dataset_ref_with_subject = URIRefOrLiteral(
-            'http://transparenz.schleswig-holstein.de/ae2a3cffda84388365bc87711ed4af47'
-        )
-
-    def test_parse_subject_returns_subject(self):
-        dataset_dict = {}
-        self.profile._parse_subject(dataset_dict, self.dataset_ref_with_subject)
-        assert 'http://d-nb.info/gnd/4128022-2' ==  dataset_dict['subject']
-    
-    def test_parse_dataset_returns_subject(self):
-        dataset_dict = {}
-        self.profile.parse_dataset(dataset_dict, self.dataset_ref_with_subject)
-        assert 'http://d-nb.info/gnd/4128022-2' ==  dataset_dict['subject']
 
 
 class TestODSHDCATdeProfileGraphFromDataset(unittest.TestCase):
@@ -114,17 +90,6 @@ class TestODSHDCATdeProfileGraphFromDataset(unittest.TestCase):
     )
 
     
-    @patch_no_collection_member
-    def test_it_adds_dct_subject(self, __):
-        dataset_dict = {
-            'subject': 'http://some_subject',
-            'type': 'dataset',
-            'groups': [],
-        }        
-        expected_node = '<dct:subject rdf:resource="http://some_subject"/>'
-        self.get_graph_and_assert_in(dataset_dict, self.dummy_dataset_ref, expected_node)
-    
-    
     @patch_no_collection_member
     def test_it_adds_dct_type_collection(self, __):
         dataset_dict = {
diff --git a/ckanext/odsh/tests_tpsh/test_search.py b/ckanext/odsh/tests_tpsh/test_search.py
index a8f216163cd612d72c24319cca7e32ad9e3362e4..0988d909ce2f5e86cc9af2822abd03169653a5ec 100644
--- a/ckanext/odsh/tests_tpsh/test_search.py
+++ b/ckanext/odsh/tests_tpsh/test_search.py
@@ -5,8 +5,8 @@ class Test_before_search(unittest.TestCase):
     def setUp(self):
         self.search_params_before_test = {
             'extras': {}, 
-            'facet.field': ['organization', 'subject_text', 'groups'], 
-            'fq': 'organization:"test-organisation" groups:"gove" subject_text:"T\xe4tigkeitsbericht" +dataset_type:dataset', 
+            'facet.field': ['organization', 'groups'], 
+            'fq': 'organization:"test-organisation" groups:"gove" +dataset_type:dataset', 
             'include_private': True, 
             'q': '', 
             'rows': 20, 
@@ -34,7 +34,7 @@ class Test_before_search(unittest.TestCase):
         search_params_expected.update({'extras': extras})
         search_params_expected.update({
             'fq': (
-                'organization:"test-organisation" groups:"gove" subject_text:"T\xe4tigkeitsbericht" '
+                'organization:"test-organisation" groups:"gove" '
                 '+dataset_type:dataset (+extras_temporal_start:[2019-08-02T00:00:00Z TO 2019-08-01T00:00:00Z] '
                 'OR +extras_temporal_end:[2019-08-02T00:00:00Z TO 2019-08-01T00:00:00Z]  OR '
                 '((*:* NOT extras_temporal_end:[* TO *]) AND extras_temporal_start:[* TO 2019-08-01T00:00:00Z]))'
@@ -67,7 +67,7 @@ class Test_before_search(unittest.TestCase):
         search_params_expected.update({
             'fq': (
                 'organization:"test-organisation" groups:"gove" '
-                'subject_text:"T\xe4tigkeitsbericht" +dataset_type:dataset '
+                '+dataset_type:dataset '
                 '(+extras_temporal_start:[2019-08-01T00:00:00Z TO 2019-08-02T00:00:00Z] '
                 'OR +extras_temporal_end:[2019-08-01T00:00:00Z TO 2019-08-02T00:00:00Z]  '
                 'OR (extras_temporal_start:[* TO 2019-08-01T00:00:00Z] AND '
@@ -91,7 +91,7 @@ class Test_before_search(unittest.TestCase):
         search_params_expected.update({
             'fq': (
                 'organization:"test-organisation" groups:"gove" '
-                'subject_text:"T\xe4tigkeitsbericht" +dataset_type:dataset '
+                '+dataset_type:dataset '
                 '(+extras_temporal_start:[2019-08-01T00:00:00Z TO *] '
                 'OR +extras_temporal_end:[2019-08-01T00:00:00Z TO *]  '
                 'OR (*:* NOT extras_temporal_end:[* TO *]))'
@@ -112,7 +112,7 @@ class Test_before_search(unittest.TestCase):
         search_params_expected.update({
             'fq': (
                 'organization:"test-organisation" groups:"gove" '
-                'subject_text:"T\xe4tigkeitsbericht" +dataset_type:dataset '
+                '+dataset_type:dataset '
                 '(+extras_temporal_start:[* TO 2019-08-02T00:00:00Z] OR '
                 '+extras_temporal_end:[* TO 2019-08-02T00:00:00Z]  '
                 'OR ((*:* NOT extras_temporal_end:[* TO *]) '
diff --git a/ckanext/odsh/validation.py b/ckanext/odsh/validation.py
index 2bbee66b6b417b62a1c46cbb7f9a551d1da5a696..8589ee8d9f7641644882af36e6122edc06c4e9ca 100644
--- a/ckanext/odsh/validation.py
+++ b/ckanext/odsh/validation.py
@@ -295,59 +295,6 @@ def tag_string_convert(key, data, errors, context):
         toolkit.get_validator('tag_length_validator')(tag, context)
 
 
-def _convert_subjectID_to_subjectText(subject_id, flattened_data):
-
-    if not subject_id:
-        return flattened_data
-
-    extension_path = pkg_resources.resource_filename('ckanext.odsh', '')
-    subject_mapping_file_path = tk.config.get(
-        'ckanext.odsh.subject_mapping_file_path', extension_path + '/resources/subject_mapping.json')
-    
-    try:
-        with open(subject_mapping_file_path) as mapping_json:
-             subject_mapping = json.loads(mapping_json.read())
-    except IOError as err:
-        log.error(
-            'Could not load subject mapping file from {}'
-            .format(subject_mapping_file_path)
-        )
-        raise
-    except ValueError as err:
-        log.error(
-            'Could not convert subject mapping file from json. \nSubject mapping file: {}'
-            .format(subject_mapping_file_path)
-        )
-        raise
-    
-    try: 
-        subject_text = subject_mapping[subject_id]
-    except:
-        log.warning(
-            'Subject_id "{}" not found in subject mapping dictionary.\nSubject mapping file: {}'
-            .format(subject_id, subject_mapping_file_path)
-        )
-        raise toolkit.Invalid(_('Subject must be a known URI.'))
-        
-
-    new_index = next_extra_index(flattened_data)
-    flattened_data[('extras', new_index, 'key')] = 'subject_text'
-    flattened_data[('extras', new_index, 'value')] = subject_text
-    return flattened_data
-
-
-def validate_subject(key, flattened_data, errors, context):
-    subject_id = flattened_data[key]
-    require_subject = toolkit.asbool(
-        tk.config.get('ckanext.odsh.require_subject', True)
-    )
-    if not require_subject:
-        flattened_data = _convert_subjectID_to_subjectText(subject_id, flattened_data)
-        return
-    if not subject_id:
-        raise toolkit.Invalid(_('Subject must not be empty.'))
-    flattened_data = _convert_subjectID_to_subjectText(subject_id, flattened_data)
-
 def validate_relatedPackage(data):
     if data:
         try:
@@ -355,6 +302,7 @@ def validate_relatedPackage(data):
         except logic.NotFound:
             raise toolkit.Invalid("relatedPackage: package '{}' not found".format(data))
 
+
 def validate_formats(data, errors):
     if not data:
         raise toolkit.Invalid('Missing format.')
@@ -364,12 +312,12 @@ def validate_formats(data, errors):
 
     return data
 
+
 def get_validators():
     return {
         'known_spatial_uri': known_spatial_uri,
         'odsh_validate_extras': validate_extras,
         'validate_licenseAttributionByText': validate_licenseAttributionByText,
-        'tpsh_validate_subject': validate_subject,
 	'tpsh_validate_relatedPackage': validate_relatedPackage,
         'odsh_validate_format': validate_formats,
     }