diff --git a/ckanext/odsh/collection/controller.py b/ckanext/odsh/collection/controller.py
index 79b669afb67b03042be0c3c4b58cf5b5c1f63a0d..86141f3ca13fc40db37c1743061227a31aee2cd5 100644
--- a/ckanext/odsh/collection/controller.py
+++ b/ckanext/odsh/collection/controller.py
@@ -9,6 +9,8 @@ class LatestDatasetController(PackageController):
     
     def latest_dataset(self, id):
         latest_dataset= get_latest_dataset(id)
+        if latest_dataset is None:
+            toolkit.abort(404)
         toolkit.redirect_to(controller='package', action='read', id=latest_dataset)
 
 class LatestRecourcesController(PackageController):
@@ -35,4 +37,4 @@ class LatestRecourcesController(PackageController):
                                     filename=pre_resource_url,
                                     qualified = True)
             toolkit.redirect_to(url_resource)
-        toolkit.abort(404)
\ No newline at end of file
+        toolkit.abort(404)
diff --git a/ckanext/odsh/collection/helpers.py b/ckanext/odsh/collection/helpers.py
index fb70ac8326fa3f4ffc020f3a9e75576a144e09cf..7ae78588dde8c7245870b1eaf29e57a54f86dafd 100644
--- a/ckanext/odsh/collection/helpers.py
+++ b/ckanext/odsh/collection/helpers.py
@@ -10,13 +10,16 @@ def get_collection(dataset_dict):
     collection_id = get_collection_id(dataset_dict)
     if collection_id:
         return get_collection_info(collection_id, dataset_dict)
-    
     return None
 
 
 def get_collection_info(collection_id, dataset_dict=None):
     collection_dict = get_package_dict(collection_id)
+    if not collection_dict:
+        return None
     dataset_names = get_dataset_names(collection_dict)
+    if not dataset_names:
+        return None
     datasets_in_collection = get_datasets_from_solr(dataset_names)
     collection_info = gather_collection_info(collection_dict, datasets_in_collection, dataset_dict)
     return collection_info
@@ -41,18 +44,23 @@ def get_package_dict(name):
 
 
 def get_dataset_names(collection_dict):
+    if not collection_dict:
+        return []
     collection_dict = get_package_dict(collection_dict.get('id')) # needed to get full package_dict
     if collection_dict:
-       relationships_collection = collection_dict.get('relationships')
-       names_collection_members = [relationship.get('object') for relationship in relationships_collection]
-       return names_collection_members
+        relationships_collection = collection_dict.get('relationships')
+        names_collection_members = [relationship.get('object') for relationship in relationships_collection]
+        return names_collection_members
     else:
-       return []
+        return []
 
 
 def get_datasets_from_solr(dataset_names):
     context = None
 
+    if not dataset_names:
+        return []
+
     name_expression = ' OR '.join(dataset_names)
     fq = 'name:({})'.format(name_expression)
     
@@ -73,6 +81,15 @@ def get_datasets_from_solr(dataset_names):
 
 
 def gather_collection_info(collection_dict, datasets_in_collection, dataset_dict=None):
+    url_collection = url_from_id(collection_dict.get('name'))
+
+    if not datasets_in_collection:
+        return {
+            'title': collection_dict.get('title'),
+            'url': url_collection,
+            'members': []
+        }
+
     name_first_dataset = datasets_in_collection[0].get('name')
     url_first_dataset = url_from_id(name_first_dataset)
     
@@ -82,7 +99,6 @@ def gather_collection_info(collection_dict, datasets_in_collection, dataset_dict
     name_collection = collection_dict.get('name')
     persistent_link_last_member = url_last_member(name_collection)
 
-    url_collection = url_from_id(collection_dict.get('name'))
 
     if dataset_dict:
         name_current_dataset = dataset_dict.get('name')
@@ -148,6 +164,8 @@ def url_last_member(name_collection):
 
 def get_latest_dataset(collection_name):
     collection_info = get_collection_info(collection_name)
+    if not collection_info:
+        return None
     latest_name = collection_info['last_member']['name']
     return latest_name
 
@@ -163,4 +181,6 @@ def get_latest_resources_for_format(collection_name, resource_format):
         return None
     resources_with_asked_type = [r for r in resources if r.get('format').upper() == resource_format.upper()]
     resources_sorted = sorted(resources_with_asked_type, key=itemgetter('id','created'), reverse=True)
+    if len(resources_sorted) < 2:
+        return None
     return resources_sorted[-1]
diff --git a/ckanext/odsh/controller.py b/ckanext/odsh/controller.py
index 20a82a160816bb92d8cc4b61ce4d480f4bb36844..14bc4ff3cd089bab7811367094626796bf4f42d9 100644
--- a/ckanext/odsh/controller.py
+++ b/ckanext/odsh/controller.py
@@ -34,7 +34,7 @@ class OdshRouteController(HomeController):
         h.redirect_to('https://www.schleswig-holstein.de/odpinfo')
 
     def start(self):
-        h.redirect_to('https://opendata-stage.schleswig-holstein.de/dataset')
+        h.redirect_to('/dataset')
 
     def not_found(self):
         abort(404)
diff --git a/ckanext/odsh/fanstatic/odsh_populate_tags.js b/ckanext/odsh/fanstatic/odsh_populate_tags.js
new file mode 100644
index 0000000000000000000000000000000000000000..8d41c75c29d3a9d93a754d78792026e6e8000465
--- /dev/null
+++ b/ckanext/odsh/fanstatic/odsh_populate_tags.js
@@ -0,0 +1,16 @@
+$(document).ready(function ()
+{
+    window.fieldTags = $("#field-tags").val();
+    $('#reference').on('change', function(e) {
+        const select = e.target;
+        const selectedOption = select.options[select.selectedIndex];
+        const tag = selectedOption.innerHTML.trim();
+        if(tag !== "Musterdatensatz wählen..") {
+            var tags = tag.split(' - ').join(',');
+            $("#field-tags").val(function() {
+                return window.fieldTags + `,${tags}`;
+            })
+        }
+    });
+});
+
diff --git a/ckanext/odsh/fileformats.rdf b/ckanext/odsh/fileformats.rdf
deleted file mode 100644
index dabe70647d40c3ad668c6470289b17698a9da6c3..0000000000000000000000000000000000000000
--- a/ckanext/odsh/fileformats.rdf
+++ /dev/null
@@ -1,597 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<rdf:RDF
-	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
-	xmlns:owl="http://www.w3.org/2002/07/owl#"
-	xmlns:skos="http://www.w3.org/2004/02/skos/core#"
-	xmlns:ns4="http://purl.org/dc/terms/"
-	xmlns:ns5="http://www.w3.org/2008/05/skos-xl#"
-	xmlns:ns6="http://publications.europa.eu/ontology/authority/" >
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ZIP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SKOS_XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLSX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type">
-    <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme" />
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology" />
-    <rdfs:label xml:lang="en">File type</rdfs:label>
-    <owl:imports rdf:resource="http://publications.europa.eu/ontology/euvoc" />
-    <rdfs:comment rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">File type</rdfs:comment>
-    <owl:versionInfo>20190220-0</owl:versionInfo>
-    <skos:prefLabel xml:lang="en">File type</skos:prefLabel>
-    <ns4:identifier>http://publications.europa.eu/resource/authority/file-type</ns4:identifier>
-    <ns5:prefLabel rdf:nodeID="b11986117" />
-    <ns6:prefLabel xml:lang="en">File type</ns6:prefLabel>
-    <ns6:table.id>file-type</ns6:table.id>
-    <ns6:table.version.number>20190220-0</ns6:table.version.number>
-    <owl:versionIRI rdf:resource="http://publications.europa.eu/resource/authority/file-type/20190220-0" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ARC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ARC_GZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ATOM">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/AZW">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BIN">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BMP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BWF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/CSS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/CSV">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DBF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DCR">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DMP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DOC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DOCX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DTD_SGML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DTD_XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/E00">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ECW">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EPS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EPUB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/FMX2">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/FMX3">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/FMX4">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GDB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GEOJSON">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GIF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GMZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GRID_ASCII">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GZIP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HDF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HTML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HTML_SIMPL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/INDD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JPEG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JPEG2000">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JSON">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JSON_LD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/KML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/KMZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LAS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LAZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MAP_PRVW">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MAP_SRVC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MBOX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MDB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/METS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/METS_ZIP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MHTML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MOBI">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MOP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MPEG2">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MPEG4">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MPEG4_AVC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MSG_HTTP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MXD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/NETCDF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OCTET">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODT">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OP_DATPRO">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OVF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OWL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDF1X">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA1A">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA1B">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA2A">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA2B">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA3">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFX1A">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFX2A">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFX4">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PNG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PPS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PPSX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PPT">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PPTX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PSD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDFA">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_N_QUADS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_N_TRIPLES">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TRIG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TURTLE">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/REST">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RSS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RTF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SCHEMA_XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SDMX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SGML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SHP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SPARQLQ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SPARQLQRES">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SQL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAB_RSTR">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAR">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAR_GZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAR_XZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TIFF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TIFF_FX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TMX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TSV">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TXT">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WARC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WARC_GZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WORLD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XHTML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XHTML_SIMPL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLIFF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XSLFO">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XSLT">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XYZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BITS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JATS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PWP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ISO">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ISO_ZIP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EXE">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ICS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MRSID">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/N3">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/QGS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RAR">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SVG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WFS_SRVC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WMS_SRVC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GRID">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-</rdf:RDF>
\ No newline at end of file
diff --git a/ckanext/odsh/fileformats.xml b/ckanext/odsh/fileformats.xml
deleted file mode 100644
index dabe70647d40c3ad668c6470289b17698a9da6c3..0000000000000000000000000000000000000000
--- a/ckanext/odsh/fileformats.xml
+++ /dev/null
@@ -1,597 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<rdf:RDF
-	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
-	xmlns:owl="http://www.w3.org/2002/07/owl#"
-	xmlns:skos="http://www.w3.org/2004/02/skos/core#"
-	xmlns:ns4="http://purl.org/dc/terms/"
-	xmlns:ns5="http://www.w3.org/2008/05/skos-xl#"
-	xmlns:ns6="http://publications.europa.eu/ontology/authority/" >
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ZIP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SKOS_XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLSX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type">
-    <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme" />
-    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology" />
-    <rdfs:label xml:lang="en">File type</rdfs:label>
-    <owl:imports rdf:resource="http://publications.europa.eu/ontology/euvoc" />
-    <rdfs:comment rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">File type</rdfs:comment>
-    <owl:versionInfo>20190220-0</owl:versionInfo>
-    <skos:prefLabel xml:lang="en">File type</skos:prefLabel>
-    <ns4:identifier>http://publications.europa.eu/resource/authority/file-type</ns4:identifier>
-    <ns5:prefLabel rdf:nodeID="b11986117" />
-    <ns6:prefLabel xml:lang="en">File type</ns6:prefLabel>
-    <ns6:table.id>file-type</ns6:table.id>
-    <ns6:table.version.number>20190220-0</ns6:table.version.number>
-    <owl:versionIRI rdf:resource="http://publications.europa.eu/resource/authority/file-type/20190220-0" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ARC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ARC_GZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ATOM">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/AZW">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BIN">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BMP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BWF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/CSS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/CSV">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DBF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DCR">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DMP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DOC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DOCX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DTD_SGML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DTD_XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/E00">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ECW">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EPS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EPUB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/FMX2">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/FMX3">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/FMX4">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GDB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GEOJSON">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GIF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GMZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GRID_ASCII">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GZIP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HDF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HTML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HTML_SIMPL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/INDD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JPEG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JPEG2000">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JSON">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JSON_LD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/KML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/KMZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LAS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LAZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MAP_PRVW">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MAP_SRVC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MBOX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MDB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/METS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/METS_ZIP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MHTML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MOBI">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MOP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MPEG2">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MPEG4">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MPEG4_AVC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MSG_HTTP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MXD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/NETCDF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OCTET">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODT">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OP_DATPRO">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OVF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OWL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDF1X">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA1A">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA1B">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA2A">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA2B">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFA3">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFX1A">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFX2A">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFX4">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PNG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PPS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PPSX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PPT">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PPTX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PSD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDFA">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_N_QUADS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_N_TRIPLES">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TRIG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TURTLE">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/REST">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RSS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RTF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SCHEMA_XML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SDMX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SGML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SHP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SPARQLQ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SPARQLQRES">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SQL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAB">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAB_RSTR">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAR">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAR_GZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAR_XZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TIFF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TIFF_FX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TMX">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TSV">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TXT">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WARC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WARC_GZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WORLD">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XHTML">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XHTML_SIMPL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLIFF">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XSLFO">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XSLT">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XYZ">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BITS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JATS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PWP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ISO">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ISO_ZIP">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EXE">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ICS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MRSID">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/N3">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PL">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/QGS">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RAR">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SVG">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WFS_SRVC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WMS_SRVC">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GRID">
-    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
-  </rdf:Description>
-</rdf:RDF>
\ No newline at end of file
diff --git a/ckanext/odsh/helpers.py b/ckanext/odsh/helpers.py
index 672ff8208dbd99c17da4e17dcb0ed01bc36cbc40..efcb5fceb3e1a5d7e8658a4227e00e5ff3a52604 100644
--- a/ckanext/odsh/helpers.py
+++ b/ckanext/odsh/helpers.py
@@ -23,6 +23,8 @@ import pdb
 from urlparse import urlsplit, urlunsplit
 import subprocess
 import ckan.lib.helpers as helpers
+import os.path
+from collections import OrderedDict
 
 get_action = logic.get_action
 log = logging.getLogger(__name__)
@@ -92,6 +94,9 @@ def compute_bounding_box(coords):
     if len(coords) == 0:
         return None
 
+    if type(coords[0]) != list:
+        return [coords[0], coords[0], coords[1], coords[1]]
+
     coords = [c for sublist in coords for c in sublist]
     if type(coords[0][0]) == list:
         # multipolygon
@@ -453,3 +458,37 @@ def short_name_for_category(category_name):
         'tech': u'Wissenschaft',
     }
     return translations.get(category_name)
+
+def odsh_load_mdk_sample_dataset():
+    '''
+    Load sample dataset (Musterkatalog/Musterdatensatz).
+    
+    See https://bertelsmannstift.github.io/Musterdatenkatalog/def/musterdatensatz.rdf
+    and corresponding mapping in mdk_mapping.json file.
+    '''
+
+    path = os.path.abspath(os.path.dirname(__file__))
+    default_sample_data_file_path = os.path.join(path, "../../mdk_mapping.json")
+    sample_data_file_path = config.get(
+        'ckanext.odsh.sample_data_file_path', default_sample_data_file_path)
+    
+    try:
+        with open(sample_data_file_path) as mapping_json:
+             MDK_MAPPING = json.loads(mapping_json.read(), object_pairs_hook=OrderedDict)
+             default = [{'value': u'Musterdatensatz wählen..', 'key': u''}]
+             mdk = [{'key': key, 'value': MDK_MAPPING[key]} for key in MDK_MAPPING]
+             result = default+mdk
+    except IOError as err:
+        log.error(
+            'Could not load sample dataset mapping file from {}'
+            .format(sample_data_file_path)
+        )
+        raise
+    except ValueError as err:
+        log.error(
+            'Could not convert sample dataset mapping file from json. \nSample dataset mapping file: {}'
+            .format(sample_data_file_path)
+        )
+        raise
+    return result
+
diff --git a/ckanext/odsh/helpers_tpsh.py b/ckanext/odsh/helpers_tpsh.py
index fefff57c8b114117bdfdb78dbdc022d915812217..4beaef201da1f5d17315140b07e7c2cb6bbbb27c 100644
--- a/ckanext/odsh/helpers_tpsh.py
+++ b/ckanext/odsh/helpers_tpsh.py
@@ -216,11 +216,3 @@ def get_body_mail(organization, package):
     mail_url = "URL: " +  url + "%0D%0A"  +  "%0D%0A" 
     message =  mail_titel + mail_document  +  mail_url + "Mein Kommentar:" +  "%0D%0A"    +  "%0D%0A"  +  "%0D%0A"  +  "%0D%0A" 
     return anrede + message
-
-def git_commit_hash():
-    current_dir = os.path.dirname(os.path.abspath(__file__))
-    try:
-        command = 'git log -n 1 --format=%H'
-    except:
-        return 'unknown'
-    return subprocess.check_output([command], shell=True, cwd=current_dir)
\ No newline at end of file
diff --git a/ckanext/odsh/matomo.py b/ckanext/odsh/matomo.py
index 15ac1b5c7c70e3413fab7051a14bb6f13e4b0c93..89d802f7c83077853992bb4bce10717c2b52b898 100644
--- a/ckanext/odsh/matomo.py
+++ b/ckanext/odsh/matomo.py
@@ -30,4 +30,4 @@ def create_matomo_request(userId=None):
     piwiktracker.set_api_url(config.get('ckanext.odsh.matomo_url'))
     if userId:
         piwiktracker.set_visitor_id(userId)
-    enqueue_job(piwiktracker.do_track_page_view,[request.path_qs], queue='tracking')
+    # enqueue_job(piwiktracker.do_track_page_view,[request.path_qs], queue='tracking')
diff --git a/ckanext/odsh/plugin.py b/ckanext/odsh/plugin.py
index 076ca28f029e4798b4b5ba87dc62c3b368ac6aa0..8bf494dcc5f8fb89f55263184fe4618d5c2b9610 100644
--- a/ckanext/odsh/plugin.py
+++ b/ckanext/odsh/plugin.py
@@ -96,6 +96,13 @@ class OdshPlugin(plugins.SingletonPlugin, DefaultTranslation, DefaultDatasetForm
         for field in ['title', 'license_id']:
             schema.update({field: [toolkit.get_converter('not_empty')]})
         
+        schema.update({
+            'reference': [
+                toolkit.get_validator('ignore_missing'),
+                toolkit.get_converter('convert_to_extras')
+            ]
+        })
+        
         for i, item in enumerate(schema['tags']['name']):
             if item == toolkit.get_validator('tag_name_validator'):
                 schema['tags']['name'][i] = toolkit.get_validator(
@@ -106,7 +113,7 @@ class OdshPlugin(plugins.SingletonPlugin, DefaultTranslation, DefaultDatasetForm
 
         schema['resources'].update({
             'url': [toolkit.get_converter('not_empty')],
-            'format': [toolkit.get_converter('not_empty')],
+            'format': [toolkit.get_converter('odsh_validate_format')],
         })
 
         schema['extras'].update({
@@ -374,7 +381,7 @@ class OdshPlugin(plugins.SingletonPlugin, DefaultTranslation, DefaultDatasetForm
                 'tpsh_get_resource_size': helpers_tpsh.get_resource_size,
                 'tpsh_get_address_org':helpers_tpsh.get_address_org,
                 'tpsh_get_body_mail':helpers_tpsh.get_body_mail,
-		'tpsh_git_commit_hash': helpers_tpsh.git_commit_hash,
+                'odsh_load_mdk_sample_dataset': odsh_helpers.odsh_load_mdk_sample_dataset,
          }
 
     
diff --git a/ckanext/odsh/profiles/odsh_dcat_de_profile.py b/ckanext/odsh/profiles/odsh_dcat_de_profile.py
index 16535bc79e64c9115ef2a94aa84a79407c25f4b1..08dc69022dd4c2eb339debe0c83c52e42c00f277 100644
--- a/ckanext/odsh/profiles/odsh_dcat_de_profile.py
+++ b/ckanext/odsh/profiles/odsh_dcat_de_profile.py
@@ -8,6 +8,7 @@ from ckanext.dcat.utils import resource_uri
 import ckanext.dcatde.dataset_utils as ds_utils
 from ckanext.dcatde.profiles import DCATdeProfile, DCATDE, DCAT, DCATDE_1_0, DCATDE_1_0_1, DCATDE_1_0_2
 
+import ckanext.odsh.helpers as odsh_helpers
 import ckanext.odsh.helpers_tpsh as helpers_tpsh
 import ckanext.odsh.collection.helpers as helpers_collection
 
@@ -29,7 +30,7 @@ class ODSHDCATdeProfile(DCATdeProfile):
         if self._belongs_to_collection(dataset_dict, dataset_ref):
             self._mark_for_adding_to_ckan_collection(dataset_dict, dataset_ref)
         return dataset_dict
-    
+
     def _parse_distributions(self, dataset_dict, dataset_ref):
         for distribution in self.g.objects(dataset_ref, DCAT.distribution):
             for resource_dict in dataset_dict.get('resources', []):
@@ -42,24 +43,23 @@ class ODSHDCATdeProfile(DCATdeProfile):
                             ds_utils.insert_new_extras_field(
                                 dataset_dict, 'licenseAttributionByText', value)
                             return
-    
+
     def _parse_type(self, dataset_dict, dataset_ref):
         dct_type = self._object(dataset_ref, DCT.type)
         if dct_type:
             ckan_type = helpers_tpsh.map_dct_type_to_ckan_type(str(dct_type))
             dataset_dict.update({'type': ckan_type})
-    
+
     def _belongs_to_collection(self, dataset_dict, dataset_ref):
         dct_is_version_of = self._object(dataset_ref, DCT.isVersionOf)
         belongs_to_collection = True if dct_is_version_of else False
         return belongs_to_collection
-    
+
     def _mark_for_adding_to_ckan_collection(self, dataset_dict, dataset_ref):
         dataset_dict.update({'add_to_collection': True})
 
-    
-    # to RDF    
-    
+    # to RDF
+
     def graph_from_dataset(self, dataset_dict, dataset_ref):
         '''
         this class inherits from ODSHDCATdeProfile
@@ -72,31 +72,71 @@ class ODSHDCATdeProfile(DCATdeProfile):
         self._add_contributor_id(dataset_dict, dataset_ref)
         self._add_license_attribution_by_text(dataset_dict, dataset_ref)
         self._add_type(dataset_dict, dataset_ref)
+        self._add_modified_and_issued(dataset_dict, dataset_ref)
+        self._add_references(dataset_dict, dataset_ref)
         if self._is_dataset_collection(dataset_dict):
             self._remove_predefined_collection_members()
             self._add_collection_members(dataset_dict, dataset_ref)
         if self._dataset_belongs_to_collection(dataset_dict):
             self._add_collection(dataset_dict, dataset_ref)
-    
+
     def _add_contributor_id(self, dataset_dict, dataset_ref):
         contributorID = 'http://dcat-ap.de/def/contributors/schleswigHolstein'
         self.g.add(
-            (dataset_ref, DCATDE.contributorID, 
+            (dataset_ref, DCATDE.contributorID,
                 rdflib.URIRef(contributorID)
-            )
+             )
         )
-    
+
     def _add_license_attribution_by_text(self, dataset_dict, dataset_ref):
-        licenseAttributionByText = self._get_dataset_value(dataset_dict, 'licenseAttributionByText')
+        licenseAttributionByText = self._get_dataset_value(
+            dataset_dict, 'licenseAttributionByText')
         if licenseAttributionByText:
             self.g.set(
-                (dataset_ref, DCATDE.licenseAttributionByText, rdflib.Literal(licenseAttributionByText))
+                (dataset_ref, DCATDE.licenseAttributionByText,
+                 rdflib.Literal(licenseAttributionByText))
             )
             for distribution in self.g.objects(dataset_ref, DCAT.distribution):
                 self.g.set(
-                    (distribution, DCATDE.licenseAttributionByText, rdflib.Literal(licenseAttributionByText))
+                    (distribution, DCATDE.licenseAttributionByText,
+                     rdflib.Literal(licenseAttributionByText))
                 )
+
+    def _add_references(self, dataset_dict, dataset_ref):
+        '''
+        Adds reference (Musterdatenkatalog/Musterdatensatz) extra field to
+        dcat:references.
+        '''
+        sample_dataset_uri = odsh_helpers.odsh_extract_value_from_extras(dataset_dict.get('extras'), 'reference')
+        if sample_dataset_uri:
+            self.g.set(
+                (dataset_ref, DCT.references,
+                    rdflib.URIRef(sample_dataset_uri)
+                 )
+            )
     
+    def _add_modified_and_issued(self, dataset_dict, dataset_ref):
+        '''
+        Adds distributions last_modified and created values to
+        dcat:modified and dcat:issued.
+        '''
+        for distribution in self.g.objects(dataset_ref, DCAT.distribution):
+            for resource_dict in dataset_dict.get('resources', []):
+                # Match distribution in graph and distribution in ckan-dict
+                if unicode(distribution) == resource_uri(resource_dict):
+                    last_modified = resource_dict.get('last_modified', None)
+                    if last_modified:
+                        self.g.set(
+                            (distribution, DCT.modified, rdflib.Literal(
+                                last_modified, datatype="http://www.w3.org/2001/XMLSchema#dateTime"))
+                        )
+                    created = resource_dict.get('created', None)
+                    if created:
+                        self.g.set(
+                            (distribution, DCT.issued, rdflib.Literal(
+                                created, datatype="http://www.w3.org/2001/XMLSchema#dateTime"))
+                        )
+
     def _add_type(self, dataset_dict, dataset_ref):
         '''
         adds the type if there is a known mapping from ckan type to
@@ -106,60 +146,63 @@ class ODSHDCATdeProfile(DCATdeProfile):
         dct_type = helpers_tpsh.map_ckan_type_to_dct_type(ckan_type)
         if dct_type:
             self.g.set(
-                (dataset_ref, DCT.type, 
+                (dataset_ref, DCT.type,
                     rdflib.URIRef(dct_type)
-                )
+                 )
             )
-    
+
     def _get_ckan_type(self, dataset_dict):
         ckan_type = self._get_dataset_value(dataset_dict, 'type')
         return ckan_type
-    
+
     def _remove_predefined_collection_members(self):
         for s, p, o in self.g:
-            if p==DCT.hasVersion:
+            if p == DCT.hasVersion:
                 self.g.remove((s, p, o))
-    
+
     def _add_collection_members(self, dataset_dict, dataset_ref):
-        dataset_refs_belonging_to_collection = self._get_dataset_refs_belonging_to_collection(dataset_dict)
+        dataset_refs_belonging_to_collection = self._get_dataset_refs_belonging_to_collection(
+            dataset_dict)
         for ref in dataset_refs_belonging_to_collection:
             self.g.add(
                 (dataset_ref, DCT.hasVersion, rdflib.URIRef(ref))
             )
-    
+
     def _is_dataset_collection(self, dataset_dict):
         ckan_type = self._get_ckan_type(dataset_dict)
-        is_collection = ckan_type=='collection'
+        is_collection = ckan_type == 'collection'
         return is_collection
-    
+
     def _get_dataset_refs_belonging_to_collection(self, dataset_dict):
         dataset_names = helpers_collection.get_dataset_names(dataset_dict)
-	dataset_dicts = [model.Package.get(name).as_dict() for name in dataset_names]
-        dataset_ids = [dataset_dict.get('id') for dataset_dict in dataset_dicts]
+        dataset_dicts = [model.Package.get(
+            name).as_dict() for name in dataset_names]
+        dataset_ids = [dataset_dict.get('id')
+                       for dataset_dict in dataset_dicts]
         dataset_refs = [self._construct_refs(id) for id in dataset_ids]
         return dataset_refs
-    
+
     @staticmethod
     def _construct_refs(id):
         public_url = config.get('ckan.site_url')
-        url_to_id = helpers.url_for(controller='package', action ='read', id=id)
+        url_to_id = helpers.url_for(controller='package', action='read', id=id)
         ref = public_url + url_to_id
         return ref
-    
+
     def _dataset_belongs_to_collection(self, dataset_dict):
         '''
         returns True if a containing collection is found
         '''
-        if dataset_dict.get('type')=='collection':
+        if dataset_dict.get('type') == 'collection':
             return False
         collection_name = helpers_collection.get_collection_id(dataset_dict)
-	return collection_name is not None
+        return collection_name is not None
 
     def _add_collection(self, dataset_dict, dataset_ref):
         collection_id = helpers_collection.get_collection_id(dataset_dict)
         collection_uri = self._construct_refs(collection_id)
         self.g.set(
-            (dataset_ref, DCT.isVersionOf, 
+            (dataset_ref, DCT.isVersionOf,
                 rdflib.URIRef(collection_uri)
-            )
+             )
         )
diff --git a/ckanext/odsh/public/odsh.css b/ckanext/odsh/public/odsh.css
index 6de704cd6ef1cd77035834ac0a4952237b02bc6e..25f377099fe17dc44152829a9b11367e87c9232b 100644
--- a/ckanext/odsh/public/odsh.css
+++ b/ckanext/odsh/public/odsh.css
@@ -824,6 +824,9 @@ a:hover.organization-item ,a:focus.organization-item
 
 @media (max-width: 719px)
 {
+.odsh-dataset-item {
+    flex-direction: column;
+}
 .dataset-content {
     width: 100%; 
     display: block;
@@ -831,6 +834,7 @@ a:hover.organization-item ,a:focus.organization-item
 .dataset-meta {
     width: 100%;
     display: block;
+    margin-top: 25px;
 }
 .dataset-spacer{
     display: none;
@@ -1329,7 +1333,6 @@ body {
         box-sizing: border-box;
         padding-bottom: 15px;
         background-image: none;
-        height: 150px;
         display: flex;
         flex-direction: column-reverse;
     }
@@ -1340,6 +1343,7 @@ body {
     .footer-right{
         display: flex;
         justify-content: space-between;
+        flex-direction: column;
         padding-bottom: 15px;
     }
     .footer-icon a{
@@ -1934,7 +1938,8 @@ body {
 }
 
 .field-organization .select2-container .select2-choice,
-.field-spatial_uri .select2-container .select2-choice 
+.field-spatial_uri .select2-container .select2-choice,
+.field-reference .select2-container .select2-choice 
 {
     background-color: #F6F7F9;
     background-image: none;
diff --git a/ckanext/odsh/public/odsh_header.css b/ckanext/odsh/public/odsh_header.css
index 11a784cb416347446d822aff454e94be5102fbce..4a14c8c57a72ce7cbc452c22c96f5f1aff1a47a7 100644
--- a/ckanext/odsh/public/odsh_header.css
+++ b/ckanext/odsh/public/odsh_header.css
@@ -38,7 +38,7 @@
     padding-right: 0;
     position: relative;
     top: 0;
-    left: 18px;
+    margin-left: 18px;
     padding: 1em 0;
 }
 
diff --git a/ckanext/odsh/templates/base.html b/ckanext/odsh/templates/base.html
index 8191f4ce7851b544041bd209461165c8e8ab0fed..93835b96dd59fbc2365d9a81c957a2108574dcc2 100644
--- a/ckanext/odsh/templates/base.html
+++ b/ckanext/odsh/templates/base.html
@@ -19,21 +19,24 @@
 
 {% if h.odsh_use_matomo() %}
 <!-- Matomo -->
-<script type="text/javascript">
-  var _paq = _paq || [];
+<script>
+  var _paq = window._paq = window._paq || [];
   /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
+  _paq.push(["setExcludedQueryParams", ["zeile","cms_gtp","cms_range","kurzenachricht","zeig","projekt","datum","nn"]]);
   _paq.push(['trackPageView']);
   _paq.push(['enableLinkTracking']);
   (function() {
-    _paq.push(['setTrackerUrl', '{{matomo_url}}']);
-    _paq.push(['setSiteId', '{{matomo_id}}']);
-    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
-    g.type='text/javascript'; g.async=true; g.defer=true; g.src='{{matomo_url|replace('piwik.php','piwik.js')}}'; s.parentNode.insertBefore(g,s);
-  })();
+      var u="https://landesportal-sh.dwebanalytics.de/";
+      _paq.push(['setTrackerUrl', u+'matomo.php']);
+      _paq.push(['setSiteId', '3']);
+      var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
+      g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
+    })();
 </script>
+<noscript><p><img src="https://landesportal-sh.dwebanalytics.de/matomo.php?idsite=3&amp;rec=1" style="border:0;" alt="" /></p></noscript>
 <!-- End Matomo Code -->
 {% endif %}
 {% endblock %}
 {% block bodytag %} data-site-root="{{ h.odsh_public_url() }}" data-locale-root="{{ h.odsh_public_url() }}" {% endblock %}
 {% block page %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}
diff --git a/ckanext/odsh/templates/header.html b/ckanext/odsh/templates/header.html
index 98c51a300604ad9a1a9ad43eed1379626aee851e..ce28006fc1c749d527df711a8d7dce3a49d1606f 100644
--- a/ckanext/odsh/templates/header.html
+++ b/ckanext/odsh/templates/header.html
@@ -44,7 +44,6 @@
                     {% block header_site_navigation_tabs %}
                     {{ 
                     h.build_nav_main(
-                        ('home', _('Start')),
                         ('search', _('Datensätze')),
                         ('organizations_index', _('Herausgeber')),
                         ('info_page', _('Infos'))
diff --git a/ckanext/odsh/templates/macros/form.html b/ckanext/odsh/templates/macros/form.html
index 862c69eee75b6e20effeb981da4e4287fec103c3..5cd97c690c3a28e0af88db0757287fa341f49b30 100644
--- a/ckanext/odsh/templates/macros/form.html
+++ b/ckanext/odsh/templates/macros/form.html
@@ -366,12 +366,17 @@ is_required=is_required) %}
 {% macro input_address(field, label, value='', index='', placeholder='', type='text', attrs={}) %}
 {%- set _type = 'text' if type=='date' and not value else type -%}
 {%- set onFocus = 'onfocus=(this.type=\'date\')' if type=='date' and not value else '' -%}
-<div class="row-fluid">
-    <div class="span6">
-    <label class="address-label"> {{ label }} </label>
-    <input id="field-{{field}}-key" type="hidden" name="extras__{{index}}__key" value="{{field}}"  />
-    <input id="field-{{field}}-value" type="{{_type}}" name="extras__{{index}}__value" value="{{value | empty_and_escape }}" placeholder="{{ placeholder }}" {{ onFocus }} {{ attributes(attrs) }}/>
-</div>
+<div class="control-group control-full">
+	<label class="control-label" for="field-{{field}}-value">{{ label }}</label>
+	<div class="controls editor">
+		<div class="row-fluid">
+			<div class="span6">
+				<input id="field-{{field}}-key" type="hidden" name="extras__{{index}}__key" value="{{field}}"  />
+				<input id="field-{{field}}-value" type="{{_type}}" name="extras__{{index}}__value" value="{{value | empty_and_escape }}" placeholder="{{ placeholder }}" {{ onFocus }} {{ attributes(attrs) }}/>
+			</div>
+			<div class="span6 inline-error"></div>
+		</div>
+	</div>
 </div>
 {% endmacro %}
 
diff --git a/ckanext/odsh/templates/organization/snippets/organization_form.html b/ckanext/odsh/templates/organization/snippets/organization_form.html
index 364433fb5a1841e363507669c15fecdaf52598dc..2db43468683ca01415f173616832a873bf729224 100644
--- a/ckanext/odsh/templates/organization/snippets/organization_form.html
+++ b/ckanext/odsh/templates/organization/snippets/organization_form.html
@@ -37,12 +37,14 @@
   
   {{ form.input_address('location','Stadt', value=extras.location, index=2, placeholder='', type='text', attrs={}) }}
   
-  {{ form.input_address('telephone','Tel.-Nr.:', value=extras.telephone, index=3, placeholder='', type='text', attrs={}) }}
+  {{ form.input_address('telephone','Tel.-Nr.', value=extras.telephone, index=3, placeholder='', type='text', attrs={}) }}
 
-  {{ form.input_address('mail','e-mail', value=extras.mail, index=4, placeholder='', type='text', attrs={}) }}
+  {{ form.input_address('mail','E-Mail', value=extras.mail, index=4, placeholder='', type='text', attrs={}) }}
  
   {{ form.input_address('web','Website', value=extras.web, index=5, placeholder='', type='text', attrs={}) }}
 
+  {{ form.input_address('gnd','GND URI', value=extras.gnd, index=6, placeholder='https://d-nb.info/gnd/1136109587', type='text', attrs={}) }}
+
   {{ form.required_message() }}
 
   <div class="form-actions">
diff --git a/ckanext/odsh/templates/package/snippets/package_basic_fields.html b/ckanext/odsh/templates/package/snippets/package_basic_fields.html
index ada4778f2c438600cabce8295223a229ed2e87b6..2227d7b83b0bc89932be9c27c17f5f5126d35288 100644
--- a/ckanext/odsh/templates/package/snippets/package_basic_fields.html
+++ b/ckanext/odsh/templates/package/snippets/package_basic_fields.html
@@ -1,5 +1,6 @@
 {% import 'macros/form.html' as form %}
 {% resource 'odsh/odsh_form.js' %}
+{% resource 'odsh/odsh_populate_tags.js' %}
 {% resource 'odsh/bootstrap-multiselect.js' %}
 {% set dataset_is_draft = data.get('state', 'draft').startswith('draft') or data.get('state', 'none') == 'none' %}
 
@@ -320,3 +321,10 @@ dataset_is_draft)) %}
         </div>
     </div>
 </div>
+
+            
+{# field reference #}
+{% set field = 'reference' %}
+{% set error_reference = h.odsh_extract_error(field, errors) %}
+{% set value = h.odsh_extract_value_from_extras(data.extras,field) or '' %}
+{{ form.select_autocomplete(field, label=_('Musterdatensatz'), selected=value, options=h.odsh_load_mdk_sample_dataset(), error=error_reference, is_required=False, classes=['control-full', 'field-reference'])}}
diff --git a/ckanext/odsh/templates/package/snippets/resource_item.html b/ckanext/odsh/templates/package/snippets/resource_item.html
index 457eb4d8fca6dabff1ec8849816cf23a09270e64..296f03aa8b72f5ec1628e44c2da33b3cdd76c20e 100644
--- a/ckanext/odsh/templates/package/snippets/resource_item.html
+++ b/ckanext/odsh/templates/package/snippets/resource_item.html
@@ -6,6 +6,7 @@
 
 {% set rtitle=h.resource_display_name(res) if res.name else ' '%}
 {% set resource_size = h.tpsh_get_resource_size(res) %}
+{% set res_format =  res.format.replace('_SRVC','') %}
 
 <li class="resource-item" data-id="{{ res.id }}">
     <div class="resource-title-container">
@@ -35,9 +36,9 @@
             {% endif %}
             {% endblock %}
         </div>
-            {% if res.format %}
+            {% if res_format %}
             <a href="{{ download }}" >
-               <div class="dataformat-label resource-dataformat-label label" style='font-size:{{150/(res.format|length)}}px'>{{res.format}}</div>
+               <div class="dataformat-label resource-dataformat-label label" style='font-size:{{150/(res_format|length)}}px'>{{res_format}}</div>
             </a>
             {% endif %}
     </div>
diff --git a/ckanext/odsh/templates/snippets/package_item.html b/ckanext/odsh/templates/snippets/package_item.html
index b0918d3e68682688b5e93514aa556d969b320f13..6586f137ab29e9cad35ae26fffe81162f6acddbe 100644
--- a/ckanext/odsh/templates/snippets/package_item.html
+++ b/ckanext/odsh/templates/snippets/package_item.html
@@ -121,8 +121,8 @@ Example:
       {% for resource in h.dict_list_reduce(package.resources, 'format') %}
       <li>
         <a href="{{ h.url_for(controller='package', action='read', id=package.name) }}" class="label dataformat-label"
-          data-format="{{ resource.lower() }}">{{
-          resource }}</a>
+          data-format="{{ resource.lower().replace('_srvc','') }}">{{
+          resource.replace('_SRVC','') }}</a>
       </li>
       {% endfor %}
       {% endblock %}
diff --git a/ckanext/odsh/templates/snippets/search_form.html b/ckanext/odsh/templates/snippets/search_form.html
index 9e1ea9ed0bb4d3b4941c5f72d83dcbeca6e9521a..b0a7b0c1c2153110ba42ffa4af987fa02a6dbaca 100644
--- a/ckanext/odsh/templates/snippets/search_form.html
+++ b/ckanext/odsh/templates/snippets/search_form.html
@@ -71,7 +71,7 @@
     {% endblock %}
 
     {% block search_facets %}
-    {% if facets %}
+    {% if facets and facets.search %}
     <p class="filter-list">
         {% for field in facets.fields %}
         {% set search_facets_items = facets.search.get(field)['items'] %}
@@ -202,4 +202,4 @@
 {% trans %}
 <p id="search-error"><strong>There was an error while searching.</strong> Please try again.</p>
 {% endtrans %}
-{% endif %}
\ No newline at end of file
+{% endif %}
diff --git a/ckanext/odsh/templates/user/login.html b/ckanext/odsh/templates/user/login.html
index d9fb0ad86d0f83803f17eba3fc3175d1825e733d..6ccaf05a9dbdcb93a9580749252ee4a901f120ff 100644
--- a/ckanext/odsh/templates/user/login.html
+++ b/ckanext/odsh/templates/user/login.html
@@ -5,9 +5,6 @@
 {% block subtitle %} {{ _('Login') }} {% endblock %}
 
 {% block skip %}
-<p hidden>
-    version={{ commit_hash }}
-</p>
 {{ super() }}
 {% endblock skip %}
 
diff --git a/ckanext/odsh/validation.py b/ckanext/odsh/validation.py
index d74e44b402d7120ff90fac6dc82a7397d0d657be..d457fd8f6176890d9171e8a1c614656896d28f31 100644
--- a/ckanext/odsh/validation.py
+++ b/ckanext/odsh/validation.py
@@ -65,9 +65,10 @@ def validate_extras(key, data, errors, context):
     extra_errors = {}
     
     isStaNord = ('id',) in data and data[('id',)][:7] == 'StaNord'
+    isLVermGeo = ('owner_org',) in data and data[('owner_org',)] == '01115337-01d1-4e96-aa8e-9749524889c7'
     is_optional_temporal_start = toolkit.asbool(
         config.get('ckanext.odsh.is_optional_temporal_start', False)
-    ) or isStaNord
+    ) or isStaNord or isLVermGeo
 
     require_at_least_one_category = toolkit.asbool(
         config.get('ckanext.odsh.require_at_least_one_category', False)
@@ -201,8 +202,8 @@ def known_spatial_uri(key, data, errors, context):
                 poly = pkg.extras.get('spatial', None)
         if (not poly) and require_spatial_uri:
             raise toolkit.Invalid(error_message_spatial_uri_empty)
-        if has_old_uri and require_spatial_uri:
-            raise toolkit.Invalid(error_message_spatial_uri_empty)
+        #if has_old_uri and require_spatial_uri:
+        #    raise toolkit.Invalid(error_message_spatial_uri_empty)
         else:
             if poly:
                 new_index = next_extra_index(data)
@@ -265,7 +266,7 @@ def next_extra_index(data):
 
 
 def tag_name_validator(value, context):
-    tagname_match = re.compile('[\w \-.\:\(\)\´\`/]*$', re.UNICODE)
+    tagname_match = re.compile(r'[\w \-.\:\(\)\´\`\§]*$', re.UNICODE)
     if not tagname_match.match(value):
         raise toolkit.Invalid(_('Tag "%s" must be alphanumeric '
                                 'characters or symbols: -_.:()') % (value))
@@ -354,6 +355,12 @@ def validate_relatedPackage(data):
         except logic.NotFound:
             raise toolkit.Invalid("relatedPackage: package '{}' not found".format(data))
 
+def validate_formats(data, errors):
+    if not data in ['7Z','AAB','AAC','AKN4EU','AKN4EU_ZIP','APK','APPX','ARC','ARC_GZ','ARCINFO_COV','ARJ','ATOM','AZW','BIN','BITS','BMP','BWF','BZIP2','CSS','CSV','DBF','DCR','DEB','DGN','DMG','DMP','DOC','DOCX','DTD_SGML','DTD_XML','DWG','DXF','E00','EAR','ECW','EPS','EPUB','ETSI_XML','EXE','FMX2','FMX3','FMX4','FMX4_ZIP','GDB','GEOJSON','GEOTIFF','GIF','GML','GMZ','GPKG','GRID','GRID_ASCII','GZIP','HDF','HDT','HTML','HTML5','HTML_SIMPL','ICS','IMMC_XML','INDD','IPA','ISO','ISO_ZIP','JAR','JATS','JPEG','JPEG2000','JS','JSON','JSON_LD','KML','KMZ','LAS','LAZ','LEG','LHA','LPK','LZIP','LZMA','LZO','MAP_PRVW','MAP_SRVC','MBOX','MDB','METS','METS_ZIP','MHTML','MIF_MID','MOBI','MOP','MPEG2','MPEG4','MPEG4_AVC','MRSID','MSG_HTTP','MSI','MXD','N3','NETCDF','OCTET','ODB','ODC','ODF','ODG','ODP','ODS','ODT','OP_DATPRO','OVF','OWL','PDF','PDF1X','PDFA1A','PDFA1B','PDFA2A','PDFA2B','PDFA3','PDFUA','PDFX','PDFX1A','PDFX2A','PDFX4','PL','PNG','PPS','PPSX','PPT','PPTX','PS','PSD','PWP','QGS','RAR','RDF','RDFA','RDF_N_QUADS','RDF_N_TRIPLES','RDF_TRIG','RDF_TRIX','RDF_TURTLE','RDF_XML','REST','RPM','RSS','RTF','SB3','SCHEMA_XML','SDMX','SGML','SHP','SKOS_XML','SPARQLQ','SPARQLQRES','SQL','STL','SVG','SWM','TAB','TAB_RSTR','TAR','TAR_GZ','TAR_XZ','TIFF','TIFF_FX','TMX','TSV','TXT','UNGEN','WAR','WARC','WARC_GZ','WCS_SRVC','WFS_SRVC','WIM','WMS_SRVC','WORLD','XHTML','XHTML_SIMPL','XLIFF','XLS','XLSB','XLSM','XLSX','XML','XSLFO','XSLT','XYZ','XZ','Z','ZIP']:
+        raise toolkit.Invalid(_('Only formats on the list of the EU Publications Office are allowed.'))
+
+    return data
+
 def get_validators():
     return {
         'known_spatial_uri': known_spatial_uri,
@@ -362,4 +369,5 @@ def get_validators():
         'validate_licenseAttributionByText': validate_licenseAttributionByText,
         'tpsh_validate_subject': validate_subject,
 	'tpsh_validate_relatedPackage': validate_relatedPackage,
+        'odsh_validate_format': validate_formats,
     }
diff --git a/fileformats.rdf b/fileformats.rdf
index dabe70647d40c3ad668c6470289b17698a9da6c3..65aaaf58693198ad81b908ea16eeccb631f12b60 100644
--- a/fileformats.rdf
+++ b/fileformats.rdf
@@ -32,19 +32,20 @@
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
   <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type">
-    <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme" />
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology" />
+    <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme" />
     <rdfs:label xml:lang="en">File type</rdfs:label>
     <owl:imports rdf:resource="http://publications.europa.eu/ontology/euvoc" />
     <rdfs:comment rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">File type</rdfs:comment>
-    <owl:versionInfo>20190220-0</owl:versionInfo>
+    <owl:versionInfo>20220615-0</owl:versionInfo>
     <skos:prefLabel xml:lang="en">File type</skos:prefLabel>
+    <ns4:title xml:lang="en">File type</ns4:title>
     <ns4:identifier>http://publications.europa.eu/resource/authority/file-type</ns4:identifier>
-    <ns5:prefLabel rdf:nodeID="b11986117" />
+    <ns5:prefLabel rdf:nodeID="b114910810" />
     <ns6:prefLabel xml:lang="en">File type</ns6:prefLabel>
     <ns6:table.id>file-type</ns6:table.id>
-    <ns6:table.version.number>20190220-0</ns6:table.version.number>
-    <owl:versionIRI rdf:resource="http://publications.europa.eu/resource/authority/file-type/20190220-0" />
+    <ns6:table.version.number>20220615-0</ns6:table.version.number>
+    <owl:versionIRI rdf:resource="http://publications.europa.eu/resource/authority/file-type/20220615-0" />
   </rdf:Description>
   <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ARC">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
@@ -538,31 +539,31 @@
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ISO">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JS">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ISO_ZIP">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/N3">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EXE">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RAR">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ICS">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WMS_SRVC">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JS">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EXE">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MRSID">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ICS">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/N3">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MRSID">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
@@ -574,19 +575,19 @@
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RAR">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SVG">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SVG">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WFS_SRVC">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WFS_SRVC">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ISO">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
-  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WMS_SRVC">
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ISO_ZIP">
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
@@ -594,4 +595,220 @@
     <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
     <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
   </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLSB">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLSM">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/IMMC_XML">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HDT">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LEG">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/7Z">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/AAC">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/APPX">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ARJ">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DMG">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JAR">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MSI">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SWM">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/APK">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BZIP2">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DEB">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LHA">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LZMA">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODP">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TRIX">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RPM">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SB3">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WAR">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WIM">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XZ">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/Z">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/EAR">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LZIP">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LZO">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/AKN4EU">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/FMX4_ZIP">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ETSI_XML">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GPKG">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/AKN4EU_ZIP">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DGN">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DWG">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DXF">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WCS_SRVC">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/IPA">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GEOTIFF">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PDFUA">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HTML5">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/AAB">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MIF_MID">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/UNGEN">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ARCINFO_COV">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/LPK">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/STL">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DAPK">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/MP3">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/OAPK">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WAV">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XHTML5">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
+  <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_THRIFT">
+    <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+    <skos:topConceptOf rdf:resource="http://publications.europa.eu/resource/authority/file-type" />
+  </rdf:Description>
 </rdf:RDF>
\ No newline at end of file
diff --git a/licenses.json b/licenses.json
index 16a2cd6d1e7b3f8a4077f3f282c7e0fe57f7638a..f8a4716990a1d1126204533cf8c9b06925818edc 100644
--- a/licenses.json
+++ b/licenses.json
@@ -1,4 +1,12 @@
 [
+  {
+    "id": "http://dcat-ap.de/def/licenses/ccpdm/1.0",
+    "is_okd_compliant": true,
+    "is_osi_compliant": false,
+    "status": "active",
+    "title": "gemeinfrei",
+    "url": "http://creativecommons.org/publicdomain/mark/1.0/"
+  },
   {
     "id": "http://dcat-ap.de/def/licenses/dl-zero-de/2.0",
     "is_okd_compliant": true,
@@ -154,20 +162,20 @@
     "url": "https://creativecommons.org/licenses/by-nc/3.0/de/"
   },
   {
-    "id": "http://dcat-ap.de/def/licenses/ccpdm/1.0",
+    "id": "http://dcat-ap.de/def/licenses/geonutz/20130319",
     "is_okd_compliant": true,
     "is_osi_compliant": false,
     "status": "active",
-    "title": "Public Domain Mark 1.0 (PDM)",
-    "url": "http://creativecommons.org/publicdomain/mark/1.0/"
+    "title": "Nutzungsbestimmungen für die Bereitstellung von Geodaten des Bundes",
+    "url": "http://www.geodatenzentrum.de/docpdf/geonutzv.pdf"
   },
   {
-    "id": "http://dcat-ap.de/def/licenses/geonutz/20130319",
-    "is_okd_compliant": true,
+    "id": "http://dcat-ap.de/def/licenses/other-closed",
+    "is_okd_compliant": false,
     "is_osi_compliant": false,
     "status": "active",
-    "title": "Nutzungsbestimmungen für die Bereitstellung von Geodaten des Bundes",
-    "url": "http://www.geodatenzentrum.de/docpdf/geonutzv.pdf"
+    "title": "Andere geschlossene Lizenz",
+    "url": ""
   },
   {
     "id": "http://dcat-ap.de/def/licenses/dl-by-de/1.0",
diff --git a/mdk_mapping.json b/mdk_mapping.json
new file mode 100644
index 0000000000000000000000000000000000000000..85077b17687d46b305a7a0dc7a042f9933bb8e01
--- /dev/null
+++ b/mdk_mapping.json
@@ -0,0 +1,307 @@
+{
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/abfallkalender":"Abfallwirtschaft - Abfallkalender",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/abfallmengen":"Abfallwirtschaft - Abfallmengen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/abgabestellen":"Abfallwirtschaft - Abgabestellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/beteiligungen":"Abfallwirtschaft - Beteiligungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/betriebe":"Abfallwirtschaft - Betriebe",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/container":"Abfallwirtschaft - Container",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/entwaesserung":"Abfallwirtschaft - Entwässerung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/gremien":"Abfallwirtschaft - Gremien",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/muellabfuhr":"Abfallwirtschaft - Müllabfuhr",
+  "https://musterdatenkatalog.de/def/musterdatensatz/abfallwirtschaft/muellgebuehren":"Abfallwirtschaft - Müllgebühren",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bau/baufertigstellungen":"Bau - Baufertigstellungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bau/baugenehmigungen":"Bau - Baugenehmigungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bau/bauprojekte":"Bau - Bauprojekte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bau/gebaeude":"Bau - Gebäude",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bau/grundstueckbewertung":"Bau - Grundstückbewertung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/behoerden/einrichtungen":"Behörden - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/arbeit":"Bevölkerung - Arbeit",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/bedarfsgemeinschaften":"Bevölkerung - Bedarfsgemeinschaften",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/demografie":"Bevölkerung - Demografie",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/einwohnerzahl":"Bevölkerung - Einwohnerzahl",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/fluechtlingszahlen":"Bevölkerung - Flüchtlingszahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/geburtenUndSterbefaelle":"Bevölkerung - Geburten und Sterbefälle",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/integration":"Bevölkerung - Integration",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/menschenMitBehinderung":"Bevölkerung - Menschen mit Behinderung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/migrationshintergrund":"Bevölkerung - Migrationshintergrund",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/religionszugehoerigkeit":"Bevölkerung - Religionszugehörigkeit",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/staatsangehoerigkeit":"Bevölkerung - Staatsangehörigkeit",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/vornamen":"Bevölkerung - Vornamen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bevoelkerung/wohnen":"Bevölkerung - Wohnen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bibliotheken/ausleihen":"Bibliotheken - Ausleihen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bibliotheken/bestaende":"Bibliotheken - Bestände",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bibliotheken/besucherzahlen":"Bibliotheken - Besucherzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bibliotheken/budget":"Bibliotheken - Budget",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bibliotheken/einrichtungen":"Bibliotheken - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bibliotheken/kennzahlen":"Bibliotheken - Kennzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/bildungstraeger/einrichtungen":"Bildungsträger - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerbeteiligung/buergerentscheid":"Bürgerbeteiligung - Bürgerentscheid",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerbeteiligung/buergerhaushalt":"Bürgerbeteiligung - Bürgerhaushalt",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerbeteiligung/information":"Bürgerbeteiligung - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerbeteiligung/umfrage":"Bürgerbeteiligung - Umfrage",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerservice/anliegenmanagement":"Bürgerservice - Anliegenmanagement",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerservice/produkte":"Bürgerservice - Produkte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerservice/telefonverzeichnis":"Bürgerservice - Telefonverzeichnis",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerservice/termine":"Bürgerservice - Termine",
+  "https://musterdatenkatalog.de/def/musterdatensatz/buergerservice/wartezeiten":"Bürgerservice - Wartezeiten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/energiewirtschaft/energieberichte":"Energiewirtschaft - Energieberichte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/energiewirtschaft/heizung":"Energiewirtschaft - Heizung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/energiewirtschaft/solar":"Energiewirtschaft - Solar",
+  "https://musterdatenkatalog.de/def/musterdatensatz/energiewirtschaft/strom":"Energiewirtschaft - Strom",
+  "https://musterdatenkatalog.de/def/musterdatensatz/energiewirtschaft/wasser":"Energiewirtschaft - Wasser",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/coworkingSpaces":"Externe Infrastruktur - Coworking Spaces",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/einkaufsfuehrer":"Externe Infrastruktur - Einkaufsführer",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/einzelhandel":"Externe Infrastruktur - Einzelhandel",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/kirchenKappellenUndKloester":"Externe Infrastruktur - Kirchen, Kapellen und Klöster",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/maerkte":"Externe Infrastruktur - Märkte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/oeffnungszeiten":"Externe Infrastruktur - Öffnungszeiten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/polizei":"Externe Infrastruktur - Polizei",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/postfilialen":"Externe Infrastruktur - Postfilialen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/weihnachtsmaerkte":"Externe Infrastruktur - Weihnachtsmärkte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/externeInfrastruktur/wochenmaerkte":"Externe Infrastruktur - Wochenmärkte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/feuerwehr/einrichtungen":"Feuerwehr - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/feuerwehr/einsaetze":"Feuerwehr - Einsätze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/feuerwehr/kennzahlen":"Feuerwehr - Kennzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/freizeit/baeder":"Freizeit - Bäder",
+  "https://musterdatenkatalog.de/def/musterdatensatz/freizeit/einrichtungen":"Freizeit - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/freizeit/ferienangebot":"Freizeit - Ferienangebot",
+  "https://musterdatenkatalog.de/def/musterdatensatz/freizeit/grillplaetze":"Freizeit - Grillplätze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/freizeit/sitzgelegenheiten":"Freizeit - Sitzgelegenheiten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/friedhoefe/ehrengraeber":"Friedhöfe - Ehrengräber",
+  "https://musterdatenkatalog.de/def/musterdatensatz/friedhoefe/einrichtungen":"Friedhöfe - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/friedhoefe/grabstaetten":"Friedhöfe - Grabstätten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/fuhrpark/kfzBestand":"Fuhrpark - KFZ-Bestand",
+  "https://musterdatenkatalog.de/def/musterdatensatz/geschichte/archivbestand":"Geschichte - Archivbestand",
+  "https://musterdatenkatalog.de/def/musterdatensatz/geschichte/entschaedigungen":"Geschichte - Entschädigungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/geschichte/historischeLuftaufnahmen":"Geschichte - Historische Luftaufnahmen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/geschichte/information":"Geschichte - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/geschichte/personalverzeichnisHistorisch":"Geschichte - Personalverzeichnis historisch",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gesundheitseinrichtungen/apotheken":"Gesundheitseinrichtungen - Apotheken",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gesundheitseinrichtungen/baeder":"Gesundheitseinrichtungen - Bäder",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gesundheitseinrichtungen/drogenhilfe":"Gesundheitseinrichtungen - Drogenhilfe",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gesundheitseinrichtungen/hebammen":"Gesundheitseinrichtungen - Hebammen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gesundheitseinrichtungen/krankenhaeuser":"Gesundheitseinrichtungen - Krankenhäuser",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gesundheitseinrichtungen/pflege":"Gesundheitseinrichtungen - Pflege",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gewaesser/pegelstaende":"Gewässer - Pegelstände",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gewaesser/wasserflaechen":"Gewässer - Wasserflächen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/ausgleichsflaechen":"Grünflächen - Ausgleichsflächen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/baumbestandBaumkataster":"Grünflächen - Baumbestand/Baumkataster",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/baumfaellungen":"Grünflächen - Baumfällungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/biotopflaechen":"Grünflächen - Biotopflächen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/blumenampeln":"Grünflächen - Blumenampeln",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/brunnen":"Grünflächen - Brunnen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/gruenflaechenGruenflaechenkataster":"Grünflächen - Grünflächen/Grünflächenkataster",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/hundekottueten":"Grünflächen - Hundekottüten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/hundewiesen":"Grünflächen - Hundewiesen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/jagdbezirke":"Grünflächen - Jagdbezirke",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/kleingaerten":"Grünflächen - Kleingärten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/naturschutz":"Grünflächen - Naturschutz",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/parkanlagen":"Grünflächen - Parkanlagen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/urbanGardening":"Grünflächen - Urban Gardening",
+  "https://musterdatenkatalog.de/def/musterdatensatz/gruenflaechen/waldflaechen":"Grünflächen - Waldflächen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/ausserplanmaessigeAufwendungen":"Haushalt - Außerplanmäßige Aufwendungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/controlling":"Haushalt - Controlling",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/eckdaten":"Haushalt - Eckdaten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/einzeldarstellungen":"Haushalt - Einzeldarstellungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/ergebnisplan":"Haushalt - Ergebnisplan",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/finanzplan":"Haushalt - Finanzplan",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/foerderungen":"Haushalt - Förderungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/haushaltskonsolidierung":"Haushalt - Haushaltskonsolidierung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/haushaltsplan":"Haushalt - Haushaltsplan",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/jahresabschluss":"Haushalt - Jahresabschluss",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/metadaten":"Haushalt - Metadaten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/produktbereichsummen":"Haushalt - Produktbereichssummen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/produktgruppen":"Haushalt - Produktgruppen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/produktplaene":"Haushalt - Produktpläne",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/satzung":"Haushalt - Satzung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/sicherungskonzept":"Haushalt - Sicherungskonzept",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/sponsoring":"Haushalt - Sponsoring",
+  "https://musterdatenkatalog.de/def/musterdatensatz/haushalt/zuwendungenPolitischeGremien":"Haushalt - Zuwendungen Politische Gremien",
+  "https://musterdatenkatalog.de/def/musterdatensatz/hochschulen/gebaeude":"Hochschulen - Gebäude",
+  "https://musterdatenkatalog.de/def/musterdatensatz/hochschulen/studierendenzahlen":"Hochschulen - Studierendenzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/baustellen":"Individualverkehr - Baustellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/bussgelder":"Individualverkehr - Bußgelder",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/carsharing":"Individualverkehr - Carsharing",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/fahrzeugzulassungen":"Individualverkehr - Fahrzeugzulassungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/kennzahlen":"Individualverkehr - Kennzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/kfzBestand":"Individualverkehr - KFZ-Bestand",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/laerm":"Individualverkehr - Lärm",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/messstellen":"Individualverkehr - Messstellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/schwerlastverkehr":"Individualverkehr - Schwerlastverkehr",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/sondernutzungen":"Individualverkehr - Sondernutzungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/strassenverkehr":"Individualverkehr - Straßenverkehr",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/taxis":"Individualverkehr - Taxis",
+  "https://musterdatenkatalog.de/def/musterdatensatz/individualverkehr/unfaelle":"Individualverkehr - Unfälle",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/adressen":"Infrastruktur - Adressen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/ampelanlagen":"Infrastruktur - Ampelanlagen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/autobahnbindung":"Infrastruktur - Autobahnanbindung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/baustellen":"Infrastruktur - Baustellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/beleuchtungen":"Infrastruktur - Beleuchtung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/bruecken":"Infrastruktur - Brücken",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/elektrotankstellen":"Infrastruktur - Elektrotankstellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/fahrradstrassen":"Infrastruktur - Fahrradstraßen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/flughaefen":"Infrastruktur - Flughäfen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/fussgaengerzonen":"Infrastruktur - Fußgängerzonen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/laufstrecken":"Infrastruktur - Laufstrecken",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/oeffentlicheToiletten":"Infrastruktur - Öffentliche Toiletten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/parkplaetze":"Infrastruktur - Parkplätze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/schiffsanlegestellen":"Infrastruktur - Schiffsanlegestellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/strassen":"Infrastruktur - Straßen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/strassenreinigung":"Infrastruktur - Straßenreinigung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/tankstellen":"Infrastruktur - Tankstellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/infrastruktur/wlanUndMobilfunk":"Infrastruktur - WLAN und Mobilfunk",
+  "https://musterdatenkatalog.de/def/musterdatensatz/jugend/einrichtungen":"Jugend - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/justiz/einrichtungen":"Justiz - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/justiz/gesetzestexte":"Justiz - Gesetzestexte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kindertageseinrichtungen/betreuungsplaetze":"Kindertageseinrichtungen - Betreuungsplätze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kindertageseinrichtungen/kindertagesstaetten":"Kindertageseinrichtungen - Kindertagestätten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kultur/besucherzahlen":"Kultur - Besucherzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kultur/denkmaeler":"Kultur - Denkmäler",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kultur/foerderungen":"Kultur - Förderungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kultur/information":"Kultur - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kultur/kunstwerke":"Kultur - Kunstwerke",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kultur/lehrUndWanderpfade":"Kultur - Lehr- und Wanderpfade",
+  "https://musterdatenkatalog.de/def/musterdatensatz/kultur/veranstaltungen":"Kultur - Veranstaltungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/liegenschaften/gebaeude":"Liegenschaften - Gebäude",
+  "https://musterdatenkatalog.de/def/musterdatensatz/liegenschaften/grundstuecke":"Liegenschaften - Grundstücke",
+  "https://musterdatenkatalog.de/def/musterdatensatz/liegenschaften/jahresberichte":"Liegenschaften - Jahresberichte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/liegenschaften/satzungen":"Liegenschaften - Satzungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/museen/besucherzahlen":"Museen - Besucherzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/museen/einrichtungen":"Museen - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/musikschulen/jahresrechnung":"Musikschulen - Jahresrechnung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/musikschulen/teilnehmer":"Musikschulen - Teilnehmer",
+  "https://musterdatenkatalog.de/def/musterdatensatz/musikschulen/unterrichtsangebot":"Musikschulen - Unterrichtsangebot",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oeffentlicheWirtschaft/ausschreibungenVergaben":"Öffentliche Wirtschaft - Ausschreibungen Vergaben",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oeffentlicheWirtschaft/beteiligungen":"Öffentliche Wirtschaft - Beteiligungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oeffentlichkeitsarbeit/amtsblatt":"Öffentlichkeitsarbeit - Amtsblatt",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oeffentlichkeitsarbeit/ehrenbuerrger":"Öffentlichkeitsarbeit - Ehrenbürger",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oeffentlichkeitsarbeit/fotos":"Öffentlichkeitsarbeit - Fotos",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oeffentlichkeitsarbeit/information":"Öffentlichkeitsarbeit - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oeffentlichkeitsarbeit/pressemitteilungen":"Öffentlichkeitsarbeit - Pressemitteilungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/openData/information":"Open Data - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/openData/wunschlisten":"Open Data - Wunschlisten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/openData/zugriffe":"Open Data - Zugriffe",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oepnv/aufzuegeUndRolltreppen":"ÖPNV - Aufzüge und Rolltreppen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oepnv/befragungen":"ÖPNV - Befragung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oepnv/fahrgastzahlen":"ÖPNV - Fahrgastzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oepnv/haltestellen":"ÖPNV - Haltestellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oepnv/liniennetz":"ÖPNV - Liniennetz",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oepnv/sollfahrdaten":"ÖPNV - Sollfahrdaten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oepnv/verkehrsnetz":"ÖPNV - Verkehrsnetz",
+  "https://musterdatenkatalog.de/def/musterdatensatz/oepnv/vertriebsstellen":"ÖPNV - Vertriebsstellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/personal/stellenplan":"Personal - Stellenplan",
+  "https://musterdatenkatalog.de/def/musterdatensatz/politischeVertretung/buergermeister":"Politische Vertretung - Bürgermeister",
+  "https://musterdatenkatalog.de/def/musterdatensatz/politischeVertretung/gremien":"Politische Vertretung - Gremien",
+  "https://musterdatenkatalog.de/def/musterdatensatz/politischeVertretung/mandatstraeger":"Politische Vertretung - Mandatsträger",
+  "https://musterdatenkatalog.de/def/musterdatensatz/radverkehr/buergerbeteiligung":"Radverkehr - Bürgerbeteiligung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/radverkehr/fahrraeder":"Radverkehr - Fahrräder",
+  "https://musterdatenkatalog.de/def/musterdatensatz/radverkehr/foerderungen":"Radverkehr - Förderungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/radverkehr/ladestationen":"Radverkehr - Ladestationen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/radverkehr/messstellen":"Radverkehr - Messstellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/radverkehr/radrouten":"Radverkehr - Radrouten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/radverkehr/stellplaetze":"Radverkehr - Stellplätze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/adressen":"Raumordnung - Adressen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/baublockgrenzen":"Raumordnung - Baublockgrenzen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/bebauungsplaene":"Raumordnung - Bebauungspläne",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/bloecke":"Raumordnung - Blöcke",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/flaechennutzungen":"Raumordnung - Flächennutzungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/hausnummern":"Raumordnung - Hausnummern",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/liegenschaftskataster":"Raumordnung - Liegenschaftskataster",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/orthofotos":"Raumordnung - Orthofotos",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/ortsteile":"Raumordnung - Ortsteile",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/postleitzahlengebiete":"Raumordnung - Postleitzahlengebiete",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/sozialraeume":"Raumordnung - Sozialräume",
+  "https://musterdatenkatalog.de/def/musterdatensatz/raumordnung/stadtgebiet":"Raumordnung - Stadtgebiet",
+  "https://musterdatenkatalog.de/def/musterdatensatz/rettungsdienst/defibrillatoren":"Rettungsdienst - Defibrillatoren",
+  "https://musterdatenkatalog.de/def/musterdatensatz/rettungsdienst/einsaetze":"Rettungsdienst - Einsätze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/rettungsdienst/reanimationen":"Rettungsdienst - Reanimationen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/rettungsdienst/rettungspunkt":"Rettungsdienst - Rettungspunkt",
+  "https://musterdatenkatalog.de/def/musterdatensatz/schulen/einrichtungen":"Schulen - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/schulen/internetanbindung":"Schulen - Internetanbindung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/schulen/schulangebot":"Schulen - Schulangebot",
+  "https://musterdatenkatalog.de/def/musterdatensatz/schulen/schuleingangsuntersuchungen":"Schulen - Schuleingangsunteruchungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/schulen/schulentwicklungsplan":"Schulen - Schulentwicklungsplan",
+  "https://musterdatenkatalog.de/def/musterdatensatz/schulen/schuelerzahlen":"Schulen - Schülerzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/schulen/wunschschule":"Schulen - Wunschschule",
+  "https://musterdatenkatalog.de/def/musterdatensatz/senioren/einrichtungen":"Senioren - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sicherheit/karneval":"Sicherheit - Karneval",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sicherheit/kriminalitaetsstatistik":"Sicherheit - Kriminalitätsstatistik",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sicherheit/notinseln":"Sicherheit - Notinseln",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sicherheit/ordnungsamt":"Sicherheit - Ordnungsamt",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sicherheit/silvester":"Sicherheit - Silvester",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sozialeHilfen/asylbewerber":"Soziale Hilfen - Asylwerber",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sozialeHilfen/behindertenwohnheime":"Soziale Hilfen - Behindertenwohnheime",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sozialeHilfen/einrichtungen":"Soziale Hilfen - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sozialeHilfen/leistungsbezieher":"Soziale Hilfen - Leistungsbezieher",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sozialeHilfen/strassen":"Soziale Hilfen - Straßen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sozialeHilfen/wohngeld":"Soziale Hilfen - Wohngeld",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sportUndSpielstaetten/belegung":"Sport- und Spielstätten - Belegung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sportUndSpielstaetten/einrichtungen":"Sport- und Spielstätten - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/sportUndSpielstaetten/freibaeder":"Sport- und Spielstätten - Freibäder",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtarchiv/bestaende":"Stadtarchiv - Bestände",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtmarketing/information":"Stadtmarketing - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtmarketing/staedterankings":"Stadtmarketing - Städterankings",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtmarketing/standortentwicklung":"Stadtmarketing - Standortentwicklung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtmarketing/zahlenUndFakten":"Stadtmarketing - Zahlen und Fakten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/Stadtplan/Stadtmodell3d":"Stadtplan - Stadtmodell 3D",
+  "https://musterdatenkatalog.de/def/musterdatensatz/Stadtplan/stadtplaene":"Stadtplan - Stadtpläne",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtwerke/ausschreibungenVergaben":"Stadtwerke - Ausschreibungen Vergaben",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtwerke/immobilienangebote":"Stadtwerke - Immobilienangebote",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtwerke/information":"Stadtwerke - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/stadtwerke/kennzahlen":"Stadtwerke - Kennzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/steuernUndAbgaben/hundesteuer":"Steuern und Abgaben - Hundesteuer",
+  "https://musterdatenkatalog.de/def/musterdatensatz/steuernUndAbgaben/nettoeinnahmen":"Steuern und Abgaben - Nettoeinnahmen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/theater/besucherzahlen":"Theater - Besucherzahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/tiefbau/geschaeftsberichte":"Tiefbau - Geschäftsberichte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/tourismus/campingplaetze":"Tourismus - Campingplätze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/tourismus/gaestezahlen":"Tourismus - Gästezahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/tourismus/privatunterkuenfte":"Tourismus - Privatunterkünfte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/tourismus/sehenswuerdigkeiten":"Tourismus - Sehenswürdigkeiten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/tourismus/stadtfuehrungen":"Tourismus - Stadtführungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/tourismus/uebernachtungen":"Tourismus - Übernachtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/umweltschutz/grundwasser":"Umweltschutz - Grundwasser",
+  "https://musterdatenkatalog.de/def/musterdatensatz/umweltschutz/klimabilanz":"Umweltschutz - Klimabilanz",
+  "https://musterdatenkatalog.de/def/musterdatensatz/umweltschutz/messstellen":"Umweltschutz - Messstellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/umweltschutz/nachhaltigkeit":"Umweltschutz - Nachhaltigkeit",
+  "https://musterdatenkatalog.de/def/musterdatensatz/umweltschutz/trinkwasser":"Umweltschutz - Trinkwasser",
+  "https://musterdatenkatalog.de/def/musterdatensatz/umweltschutz/umweltzonen":"Umweltschutz - Umweltzonen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/vereineVerbaende/einrichtungen":"Vereine, Verbände - Einrichtungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/volkshochschulen/information":"Volkshochschulen - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/volkshochschulen/programm":"Volkshochschulen - Programm",
+  "https://musterdatenkatalog.de/def/musterdatensatz/volkshochschulen/teilnehmer":"Volkshochschulen - Teilnehmer",
+  "https://musterdatenkatalog.de/def/musterdatensatz/volkshochschulen/veranstaltungen":"Volkshochschulen - Veranstaltungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/kandidatenlisten":"Wahlen - Kandidatenlisten",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/kommunalwahl":"Wahlen - Kommunalwahl",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/strassen":"Wahlen - Straßen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlbeteiligungBundestagswahlen":"Wahlen - Wahlbeteiligung Bundestagswahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlbteiligungKommunalwahlen":"Wahlen - Wahlbeteiligung Kommunalwahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlbezirke":"Wahlen - Wahlbezirke",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlergebnisBeiratswahlen":"Wahlen - Wahlergebnis Beiratswahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlergebnisBundestagswahlen":"Wahlen - Wahlergebnis Bundestagswahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlergebnisEuropawahlen":"Wahlen - Wahlergebnis Europawahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlergebnisKommunalwahlen":"Wahlen - Wahlergebnis Kommunalwahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlergebnisLandtagswahlen":"Wahlen - Wahlergebnis Landtagswahlen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahlkreise":"Wahlen - Wahlkreise",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wahlen/wahllokale":"Wahlen - Wahllokale",
+  "https://musterdatenkatalog.de/def/musterdatensatz/websiten/zugriffe":"Website - Zugriffe",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wetter/hitze":"Wetter - Hitze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wetter/messstellen":"Wetter - Messstellen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wirtschaft/bueroflaechen":"Wirtschaft - Büroflächen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wirtschaft/industrieUndGewerbeflaechen":"Wirtschaft - Industrie- und Gewerbeflächen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wirtschaft/meldungen":"Wirtschaft - Meldungen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wirtschaft/wirtschaftsfoerderung":"Wirtschaft - Wirtschaftsförderung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wirtschaft/wirtschaftsstandorte":"Wirtschaft - Wirtschaftsstandorte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/bauprojekte":"Wohnen - Bauprojekte",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/flaechengroessen":"Wohnen - Flächengrößen",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/fluechtlingsunterbringung":"Wohnen - Flüchtlingsunterbringung",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/gefoerderterWohnbau":"Wohnen - geförderter Wohnbau",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/information":"Wohnen - Information",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/sozialraeume":"Wohnen - Sozialräume",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/studentenwohnheime":"Wohnen - Studentenwohnheime",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/wohnplaetze":"Wohnen - Wohnplätze",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/wohnquartiere":"Wohnen - Wohnquartiere",
+  "https://musterdatenkatalog.de/def/musterdatensatz/wohnen/wohnungseigentum":"Wohnen - Wohnungseigentum",
+  "https://musterdatenkatalog.de/def/musterdatensatz/zivilUndKatastrophenschutz/kampfmittelfunde":"Zivil- und Katastrophenschutz - Kampfmittelfunde",
+  "https://musterdatenkatalog.de/def/musterdatensatz/zivilUndKatastrophenschutz/sirenen":"Zivil- und Katastrophenschutz - Sirenen"
+}
+