diff --git a/src/main/java/de/landsh/opendata/DcatStatistics.java b/src/main/java/de/landsh/opendata/DcatStatistics.java
index 73a5c89001932a8149a5549e74405aa49c604935..3db75f785515965374e706b5edac94e9ed401d1e 100644
--- a/src/main/java/de/landsh/opendata/DcatStatistics.java
+++ b/src/main/java/de/landsh/opendata/DcatStatistics.java
@@ -16,6 +16,7 @@ import org.slf4j.LoggerFactory;
 
 import java.io.*;
 import java.util.*;
+import java.util.zip.GZIPInputStream;
 
 /**
  * Berechnet zu einem DCAT-AP.de konformen Katalog diverse Statistiken.
@@ -41,6 +42,7 @@ public class DcatStatistics {
     private Set<String> validPoliticalGeocodingLevels;
     private Set<String> validContributors;
     private Set<String> validAccrualFrequencies;
+    private Set<String> machineReadableFormat;
 
     static Collection<Resource> listDistributionsForDataset(Resource dataset) {
         final Set<Resource> result = new HashSet<>();
@@ -95,6 +97,47 @@ public class DcatStatistics {
         return result;
     }
 
+    /**
+     * Reads a RDF document contaning standard vocabulary, such as the European file formats.
+     */
+    private void addExternalVocabulary(Model model, String type, String resourceName) throws IOException {
+
+        final InputStream is;
+
+        if (resourceName.endsWith(".gz")) {
+            is = new GZIPInputStream(getClass().getResourceAsStream(resourceName));
+        } else {
+            is = getClass().getResourceAsStream(resourceName);
+        }
+
+        model.read(is, null, type);
+    }
+
+    /**
+     * Read a vocabulary file from the European Data Portal and extract information about distribution formats.
+     */
+    private Map<String, Boolean> readFormatInformation( String resourceName,  Property property) {
+
+        final Map<String, Boolean> result = new HashMap<>();
+
+        final Model model = ModelFactory.createDefaultModel();
+        model.read(getClass().getResourceAsStream(resourceName), null, "RDF/XML");
+
+        final ResIterator it = model.listSubjects();
+        while (it.hasNext()) {
+            final Resource resource = it.next();
+            final Statement statement = resource.getProperty(property);
+            if (statement != null) {
+                boolean value = statement.getObject().asLiteral().getBoolean();
+                String format = StringUtils.substringAfterLast(resource.getURI(), "/");
+                result.put(format, value);
+            }
+        }
+        return result;
+    }
+
+     Map<String, Boolean> machineReadableFormats;
+     Map<String, Boolean> nonProprietaryFormats;
     private void work() throws IOException {
 
         validFileTypes = readVocabulary("http://publications.europa.eu/resource/authority/file-type");
@@ -106,6 +149,10 @@ public class DcatStatistics {
         validContributors = readVocabulary("https://www.dcat-ap.de/def/contributors/20190531.rdf");
 
         final Model model = ModelFactory.createDefaultModel();
+
+        machineReadableFormats =      readFormatInformation("/edp-vocabularies/edp-machine-readable-format.rdf", EDP.isMachineReadable);
+        nonProprietaryFormats =     readFormatInformation("/edp-vocabularies/edp-non-proprietary-format.rdf", EDP.isNonProprietary);
+
         final File dir = new File("target/");
         final File[] files = dir.listFiles((file, name) -> name.endsWith(".ttl"));
         if (files != null) {
@@ -158,8 +205,10 @@ public class DcatStatistics {
         System.out.println("## Zugänglichkeit");
         System.out.println("- DownloadURL\t" + global.distributionProperties.get(DCAT.downloadURL) / numberOfDistributions);
         System.out.println("## Interoperabilität");
-        System.out.println("- Format\t" + global.distributionProperties.get(DCTerms.format) / numberOfDistributions);
-        System.out.println("- Media Type\t" + global.distributionProperties.get(DCAT.mediaType) / numberOfDistributions);
+        System.out.println("- Format verfügbar\t" + global.distributionProperties.get(DCTerms.format) / numberOfDistributions);
+        System.out.println("- Media Type verfügbar\t" + global.distributionProperties.get(DCAT.mediaType) / numberOfDistributions);
+        System.out.println("- Nicht-proprietär\t" + global.datasetWithAtLeastOneNonProprietaryFormat / numberOfDatasets);
+        System.out.println("- Maschinenlesbarkeit\t" + global.datasetWithAtLeastOneMachineReadableDistribution / numberOfDatasets);
         System.out.println("## Wiederverwendbarkeit");
         System.out.println("- Lizenzangaben\t" + global.datasetProperties.get(DCTerms.license) / numberOfDatasets);
         System.out.println("- Zugangsbeschränksangaben\t" + global.datasetProperties.get(DCTerms.accessRights) / numberOfDatasets);
@@ -177,11 +226,11 @@ public class DcatStatistics {
      * Check if the specified property is used for a specified dataset.
      */
     void checkDatasetProperty(Statistics statistics, Resource dataset, Property property) {
-        if(!global.datasetProperties.containsKey(property)) {
-            global.datasetProperties.put(property,0);
+        if (!global.datasetProperties.containsKey(property)) {
+            global.datasetProperties.put(property, 0);
         }
-        if(!statistics.datasetProperties.containsKey(property)) {
-            statistics.datasetProperties.put(property,0);
+        if (!statistics.datasetProperties.containsKey(property)) {
+            statistics.datasetProperties.put(property, 0);
         }
         if (dataset.hasProperty(property)) {
             final boolean isLiteral = isLiteralValue(dataset, property);
@@ -194,11 +243,11 @@ public class DcatStatistics {
      * Check if the specified property is used for the specified dataset and uses one of the values from the vocabulary.
      */
     void checkDatasetProperty(Statistics statistics, Resource dataset, Property property, Set<String> validVocabulary) {
-        if(!global.datasetProperties.containsKey(property)) {
-            global.datasetProperties.put(property,0);
+        if (!global.datasetProperties.containsKey(property)) {
+            global.datasetProperties.put(property, 0);
         }
-        if(!statistics.datasetProperties.containsKey(property)) {
-            statistics.datasetProperties.put(property,0);
+        if (!statistics.datasetProperties.containsKey(property)) {
+            statistics.datasetProperties.put(property, 0);
         }
 
         if (dataset.hasProperty(property)) {
@@ -304,11 +353,17 @@ public class DcatStatistics {
 
         final Collection<Resource> distributions = listDistributionsForDataset(dataset);
 
+        boolean hasMachineReadableDistribution = false;
+        boolean hasNonProprietaryFormat = false;
+
         for (final Resource distribution : distributions) {
             statistics.numberOfDistributions++;
             global.numberOfDistributions++;
 
-            workOnFormat(distribution, statistics, contributor);
+            final String format = workOnFormat(distribution, statistics, contributor);
+            hasMachineReadableDistribution |= machineReadableFormats.getOrDefault(format,false);
+            hasNonProprietaryFormat |= nonProprietaryFormats.getOrDefault(format,false);
+
             workOnDistributionLicense(distribution, statistics);
             checkDistributionProperty(statistics, distribution, DCAT.accessURL);
             checkDistributionProperty(statistics, distribution, DCAT.downloadURL);
@@ -320,6 +375,16 @@ public class DcatStatistics {
             checkDistributionProperty(statistics, distribution, DCAT.byteSize);
             checkDistributionProperty(statistics, distribution, SPDX.checksum);
         }
+
+        if (hasMachineReadableDistribution) {
+            statistics.datasetWithAtLeastOneMachineReadableDistribution++;
+            global.datasetWithAtLeastOneMachineReadableDistribution++;
+        }
+
+        if (hasNonProprietaryFormat) {
+            statistics.datasetWithAtLeastOneNonProprietaryFormat++;
+            global.datasetWithAtLeastOneNonProprietaryFormat++;
+        }
     }
 
     private void workOnDistributionLicense(Resource distribution, Statistics statistics) {
@@ -361,9 +426,9 @@ public class DcatStatistics {
 
     }
 
-    private void workOnFormat(Resource distribution, Statistics statistics, String contributor) {
-        Statement formatStatement = distribution.getProperty(DCTerms.format);
-        RDFNode format = formatStatement == null ? null : formatStatement.getObject();
+    private String workOnFormat(Resource distribution, Statistics statistics, String contributor) {
+        final Statement formatStatement = distribution.getProperty(DCTerms.format);
+        final RDFNode format = formatStatement == null ? null : formatStatement.getObject();
 
         String formatString = StringUtils.EMPTY;
 
@@ -384,6 +449,8 @@ public class DcatStatistics {
 
         statistics.formats.add(formatString);
         global.formats.add(formatString);
+
+        return formatString;
     }
 
     private void workOnIdentifier(Resource dataset, Statistics statistics) {
@@ -455,6 +522,8 @@ public class DcatStatistics {
         int identifierIsURI = 0;
         int distributionWithoutLicense = 0;
         int numberOfDatasets = 0;
+        int datasetWithAtLeastOneNonProprietaryFormat = 0;
+        int datasetWithAtLeastOneMachineReadableDistribution = 0;
 
         void incrementDatasetInformation(Property property, boolean isLiteral, boolean isInvalid) {
             datasetProperties.put(property, datasetProperties.getOrDefault(property, 0) + 1);
@@ -475,6 +544,8 @@ public class DcatStatistics {
         void writeHeader(PrintStream out) {
             out.print("contributor\t" +
                     "Number of Datasets\t" +
+                    "Datasets with machine readable distribution\t" +
+                    "Datasets with non-propietary format\t" +
                     "Datasets without contributor (bad)\t" +
                     "Datasets without identifier (bad)\t" +
                     "Datasets with URI identifier (good)\t");
@@ -520,6 +591,10 @@ public class DcatStatistics {
             out.print('\t');
             out.print(numberOfDatasets);
             out.print('\t');
+            out.print(datasetWithAtLeastOneMachineReadableDistribution);
+            out.print('\t');
+            out.print(datasetWithAtLeastOneNonProprietaryFormat);
+            out.print('\t');
             out.print(datasetWithoutContributor);
             out.print('\t');
             out.print(noIdentifier);
diff --git a/src/main/java/de/landsh/opendata/EDP.java b/src/main/java/de/landsh/opendata/EDP.java
new file mode 100644
index 0000000000000000000000000000000000000000..613ae9256c2d64e032780dd5aea090e15f925f37
--- /dev/null
+++ b/src/main/java/de/landsh/opendata/EDP.java
@@ -0,0 +1,27 @@
+package de.landsh.opendata;
+
+import org.apache.jena.rdf.model.Model;
+import org.apache.jena.rdf.model.ModelFactory;
+import org.apache.jena.rdf.model.Property;
+import org.apache.jena.rdf.model.Resource;
+
+public class EDP {
+    public static final String NS = "https://europeandataportal.eu/voc#";
+    public static final Resource NAMESPACE;
+    public static final Property isMachineReadable;
+    public static final Property isNonProprietary;
+    private static final Model m_model = ModelFactory.createDefaultModel();
+
+    static {
+        NAMESPACE = m_model.createResource(NS);
+        isMachineReadable = m_model.createProperty(NS, "isMachineReadable");
+        isNonProprietary = m_model.createProperty(NS, "isNonProprietary");
+    }
+
+    private EDP() {
+    }
+
+    public static String getURI() {
+        return NS;
+    }
+}
diff --git a/src/main/java/de/landsh/opendata/FixBrokenDcatFiles.java b/src/main/java/de/landsh/opendata/FixBrokenDcatFiles.java
new file mode 100644
index 0000000000000000000000000000000000000000..ec34915248c3eb63d0bd89cb5d9190c0accc132a
--- /dev/null
+++ b/src/main/java/de/landsh/opendata/FixBrokenDcatFiles.java
@@ -0,0 +1,131 @@
+package de.landsh.opendata;
+
+import me.tongfei.progressbar.ProgressBar;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.commons.lang3.math.NumberUtils;
+import org.apache.jena.rdf.model.Model;
+import org.apache.jena.rdf.model.ModelFactory;
+import org.apache.jena.riot.RDFLanguages;
+import org.apache.jena.riot.RDFParser;
+import org.apache.jena.riot.RiotException;
+import org.apache.jena.riot.system.ErrorHandlerFactory;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.*;
+import java.nio.file.Files;
+import java.util.Arrays;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
+/**
+ * Einige Länderportal senden so dermaßen kaputte Datensätze an GovData, dass der RDF-Parser den ganzen Katalog nicht
+ * verarbeiten kann. Dieses Programm filtert solch defekte Datensätze heraus.
+ */
+public class FixBrokenDcatFiles {
+    public static final Logger log = LoggerFactory.getLogger(FixBrokenDcatFiles.class);
+
+    public static void main(String[] args) throws IOException {
+
+        final Set<File> filesWithErrors = new HashSet<>();
+
+        final File dir = new File("target/");
+        final File[] files = dir.listFiles((file, name) -> name.endsWith(".ttl"));
+        if (files != null) {
+            for (File file : ProgressBar.wrap(Arrays.asList(files), "Fixing broker RDF docments")) {
+                if (!isValidRdf(file)) {
+                    filesWithErrors.add(file);
+                }
+            }
+        }
+
+        log.info("{} files contain errors.", filesWithErrors.size());
+        for (File file : filesWithErrors) {
+            log.info("Fixing {}...", file);
+            fixFile(file);
+        }
+    }
+
+    static void fixFile(File file) throws IOException {
+        int lineWithError = findFirstErrorLine(file);
+        if (lineWithError > 0) {
+            final List<String> lines = Files.readAllLines(file.toPath());
+
+            while (!isValidRdf(String.join("\n", lines))) {
+                final int totalNumberOfLines = lines.size();
+
+                // Wir suchen rückwärts, bis wir gültiges RDF haben.
+                int endOfValidRdf = lineWithError - 1;
+                while (endOfValidRdf > 0 && !isValidRdf(String.join("\n", lines.subList(0, endOfValidRdf)) + "\n<http://example.org/dummy> a <http://example.org/Dummy> .\n")) {
+                    endOfValidRdf--;
+                }
+
+                // Das vermutliche Ende der defekten Resource finden.
+                int endOfDefect = lineWithError + 1;
+                while (endOfDefect < totalNumberOfLines && !lines.get(endOfDefect).endsWith(" .")) {
+                    endOfDefect++;
+                }
+
+                lines.subList(endOfValidRdf, endOfDefect + 1).clear();
+            }
+
+            final PrintStream out = new PrintStream(new FileOutputStream(file));
+            for (String line : lines) {
+                out.println(line);
+            }
+            out.close();
+        }
+    }
+
+    static boolean isValidRdf(String text) {
+        final Model model = ModelFactory.createDefaultModel();
+
+        try {
+            RDFParser.create()
+                    .source(new StringReader(text))
+                    .lang(RDFLanguages.TTL)
+                    .base("http://open/data")
+                    .errorHandler(ErrorHandlerFactory.errorHandlerSimple())
+                    .parse(model);
+            return true;
+        } catch (RiotException e) {
+            return false;
+        }
+    }
+
+    /**
+     * Check if the specified file contains a readable RDF document.
+     */
+    static boolean isValidRdf(File file) throws FileNotFoundException {
+        final Model model = ModelFactory.createDefaultModel();
+        try {
+            RDFParser.create()
+                    .source(new FileInputStream(file))
+                    .lang(RDFLanguages.TTL)
+                    .base("http://open/data")
+                    .errorHandler(ErrorHandlerFactory.errorHandlerSimple())
+                    .parse(model);
+            return true;
+        } catch (RiotException e) {
+            return false;
+        }
+    }
+
+    static int findFirstErrorLine(File file) throws FileNotFoundException {
+        // Find the line with the first error
+        final Model model = ModelFactory.createDefaultModel();
+        try {
+            RDFParser.create()
+                    .source(new FileInputStream(file))
+                    .lang(RDFLanguages.TTL)
+                    .base("http://open/data")
+                    .errorHandler(ErrorHandlerFactory.errorHandlerSimple())
+                    .parse(model);
+            return -1;
+        } catch (RiotException e) {
+            return NumberUtils.toInt(StringUtils.substringBetween(e.getMessage(), "line: ", ", col"));
+        }
+    }
+
+}
diff --git a/src/main/resources/edp-vocabularies/README.md b/src/main/resources/edp-vocabularies/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..ac0a8f2ed62dc300c70467c00e515040ceeffef3
--- /dev/null
+++ b/src/main/resources/edp-vocabularies/README.md
@@ -0,0 +1,17 @@
+# EDP Vocabularies
+
+The European Data Portals applies controlled vocabularies and ontology. This includes vocabularies defined within the [DCAT-AP](https://joinup.ec.europa.eu/solution/dcat-application-profile-data-portals-europe) specifications, additional extensions and custom ones. 
+
+## IANA
+Controlled media types from the Internet Assigned Numbers Authority (IANA) are used without modifications and are retrieved from here: https://www.iana.org/assignments/media-types/media-types.xhtml
+
+## EU Vocabularies
+Official controlled vocabularies published by the Publications Office of the European Union are used. They are retrieved without modifications from here: https://op.europa.eu/en/web/eu-vocabularies/authority-tables
+
+## Extensions and Custom Vocabularies
+Additional extensions and custom vocabularies used for several applications:
+- edp-licences-skos: Extends the vocabulary of licences.
+- edp-machine-readable-format: Extends the file-type vocabulary with machine-readable information.
+- edp-non-proprietary-format: Extends the file-type vocabulary with non-proprietary information.
+- edp-dqv-vocabulary: Defines the vocabulary for describing and storing the measurements of the MQA. It is based on [W3C DQV](https://www.w3.org/TR/vocab-dqv/).
+- edp-scoring-skos: Defines the different scoring levels for the MQA.
diff --git a/src/main/resources/edp-vocabularies/edp-dqv-vocabulary.ttl b/src/main/resources/edp-vocabularies/edp-dqv-vocabulary.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..155434c691af2e75723f15e59766da2921ed2ef2
--- /dev/null
+++ b/src/main/resources/edp-vocabularies/edp-dqv-vocabulary.ttl
@@ -0,0 +1,270 @@
+@prefix dqv:    <http://www.w3.org/ns/dqv#> .
+@prefix xsd:    <http://www.w3.org/2001/XMLSchema#> .
+@prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix skos:   <http://www.w3.org/2004/02/skos/core#> .
+@prefix dcat:   <http://www.w3.org/ns/dcat#> .
+@prefix foaf:   <http://xmlns.com/foaf/0.1/> .
+@prefix dc:     <http://purl.org/dc/terms/> .
+@prefix pv:     <https://piveau.eu/ns/voc#> .
+
+# Dimensions
+
+pv:accessibility
+    a                       dqv:Dimension ;
+    skos:prefLabel          "Accessibility"@en ;
+    skos:definition         "Once the user finds the required data, she/he needs to know how can they be accessed, possibly including authentication and authorisation."@en .
+
+pv:contextuality
+    a                       dqv:Dimension ;
+    skos:prefLabel          "Contextuality"@en ;
+    skos:definition         "Properties that provide more context for the user."@en .
+
+pv:findability
+    a                       dqv:Dimension ;
+    skos:prefLabel          "Findability"@en ;
+    skos:definition         "Metadata and data should be easy to find for both humans and computers. Machine-readable metadata are essential for automatic discovery of datasets and services."@en .
+
+pv:interoperability
+    a                       dqv:Dimension ;
+    skos:prefLabel          "Interoperability"@en ;
+    skos:definition         "Data usually needs to be integrated with other data. In addition, data needs to interoperate with applications or workflows for analysis, storage, and processing."@en .
+
+pv:reusability
+    a                       dqv:Dimension ;
+    skos:prefLabel          "Reusability"@en ;
+    skos:definition         "Metadata and data should be well-described so that they can be replicated and/or combined in different settings."@en .
+
+
+# Five star
+
+pv:OpenData5Star
+    a                       skos:ConceptScheme;
+    skos:prefLabel          "Open Data 5 Star"@en ;
+    skos:definition         "Five star rating based on https://5stardata.info"@en ;
+    dqv:inDimension         pv:interoperability .
+
+
+pv:zeroStars
+    a                       skos:Concept;
+    skos:inScheme           pv:OpenData5Star ;
+    skos:prefLabel          "Zero stars"@en ;
+    skos:definition         "Dataset available on the web."@en .
+
+pv:oneStar
+    a                       skos:Concept;
+    skos:inScheme           pv:OpenData5Star ;
+    skos:prefLabel          "One star"@en ;
+    skos:definition         "Dataset available on the web with open licence."@en .
+
+pv:twoStars
+    a                       skos:Concept;
+    skos:inScheme           pv:OpenData5Star ;
+    skos:prefLabel          "Two stars"@en ;
+    skos:definition         "Dataset available on the web with open licence and structured, machine-readable format."@en .
+
+pv:threeStars
+    a                       skos:Concept;
+    skos:inScheme           pv:OpenData5Star ;
+    skos:prefLabel          "Three stars"@en ;
+    skos:definition         "Dataset available on the web with open licence and structured, machine-readable, non proprietary format."@en .
+
+pv:fourStars
+    a                       skos:Concept;
+    skos:inScheme           pv:OpenData5Star ;
+    skos:prefLabel          "Four stars"@en ;
+    skos:definition         "Dataset available on the web with open licence and structured, machine-readable, non proprietary format. It uses URIs to denote things."@en .
+
+pv:fiveStars
+    a                       skos:Concept;
+    skos:inScheme           pv:OpenData5Star ;
+    skos:prefLabel          "Five stars"@en ;
+    skos:definition         "Dataset available on the web with open licence and structured, machine-readable, non proprietary format. It uses URIs to denote things and links to other resources for context."@en .
+
+
+# Findability
+
+pv:keywordAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether at least one dcat:keyword is specified in a dataset."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:findability .
+
+pv:categoryAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether at least one dcat:theme is specified in a dataset."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:findability .
+
+pv:spatialAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether at least one dct:spatial is specified in a dataset."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:findability .
+
+pv:temporalAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether at least one dct:temporal is specified in a dataset."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:findability .
+
+
+
+# Accessibility
+
+pv:accessUrlStatusCode
+    a                       dqv:Metric ;
+    skos:definition         "A distribution's dcat:accessURL is checked for accessibility via HTTP HEAD request. The response contains a numeric status code."@en ;
+    dqv:expectedDataType    xsd:integer ;
+    dqv:inDimension         pv:accessibility .
+
+pv:downloadUrlAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether at least one dcat:downloadUrl is specified in a distribution."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:accessibility .
+
+pv:downloadUrlStatusCode
+    a                       dqv:Metric ;
+    skos:definition         "A distribution's dcat:downloadURL is checked for accessibility via HTTP HEAD request. The response contains a numeric status code."@en ;
+    dqv:expectedDataType    xsd:integer ;
+    dqv:inDimension         pv:accessibility .
+
+
+
+# Interoperability
+
+pv:formatAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dct:format is specified in a distribution."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+pv:mediaTypeAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dcat:mediaType is specified in a distribution."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+pv:formatMediaTypeVocabularyAlignment
+    a                       dqv:Metric ;
+    skos:definition         "Checks if both a distribution&apos;s dct:format and dcat:mediaType are aligned to the  controlled vocabulary specified by DCAT-AP."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+pv:formatMediaTypeNonProprietary
+    a                       dqv:Metric ;
+    skos:definition         "Checks if at least one of a distribution&apos;s dct:format and dcat:mediaType is non-proprietary. If neither is set it is assumed the distribution uses a proprietary format/media type."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+pv:formatMediaTypeMachineInterpretable
+    a                       dqv:Metric ;
+    skos:definition         "Checks if at least one of a distribution's dct:format and dcat:mediaType is machine-interpretable. If neither is set it is assumed the distribution uses a non-machine-interpretable format/media type."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+pv:dcatApCompliance
+    a                       dqv:Metric ;
+    skos:definition         "A dataset is validated for conformity against the DCAT-AP specification using SHACL rules."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+pv:formatMatch
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether a distributions's dct:format property resembles the actual format of the linked file."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+pv:syntaxValid
+    a                       dqv:Metric ;
+    skos:definition         "It is checker whether a file's content is syntactically valid against the format's specification."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+pv:atLeastFourStars
+    a                       dqv:Metric ;
+    skos:definition         "Checks if the dataset got at least a four stars rating." ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:interoperability .
+
+
+# Reusability
+
+pv:licenceAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dct:license is specified in a distribution."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:reusability .
+
+pv:knownLicence
+    a                       dqv:Metric ;
+    skos:definition         "It is checked if a distribution&apos;s licence is part of a predefined collection."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:reusability .
+
+pv:accessRightsAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dct:accessRights is specified in a dataset."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:reusablity .
+
+pv:accessRightsVocabularyAlignment
+    a                       dqv:Metric ;
+    skos:definition         "Checks if a dataset&apos;s dct:accessRights is aligned to the controlled vocabulary specified by DCAT-AP."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:reusablity .
+
+pv:contactPointAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dcat:contactPoint is specified in a dataset."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:reusability .
+
+pv:publisherAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether a dct:publisher is specified in a dataset."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:reusability .
+
+
+
+# Contextuality
+
+pv:rightsAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dct:rights is specified in a distribution."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:contextuality .
+
+pv:byteSizeAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dcat:byteSize is specified in a distribution."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:contextuality .
+
+pv:dateIssuedAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dct:issued is specified in a distribution."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:contextuality .
+
+pv:dateModifiedAvailability
+    a                       dqv:Metric ;
+    skos:definition         "It is checked whether dct:modified is specified in a distribution."@en ;
+    dqv:expectedDataType    xsd:boolean ;
+    dqv:inDimension         pv:contextuality .
+
+pv:score
+    a                       dqv:Metric ;
+    skos:definition         "It is calculated a score from the measurements results based on the corresponding score values."@en ;
+    dqv:expectedDataType    xsd:integer ;
+    dqv:inDimension         pv:contextuality .
+
+
+# additional properties
+
+pv:trueScore
+    a                       rdfs:Property .
+
+pv:falseScore
+    a                       rdfs:Property .
diff --git a/src/main/resources/edp-vocabularies/edp-licences-skos.rdf b/src/main/resources/edp-vocabularies/edp-licences-skos.rdf
new file mode 100644
index 0000000000000000000000000000000000000000..e289951e1c517f2fc7018bbdec4078e5c90d63a0
--- /dev/null
+++ b/src/main/resources/edp-vocabularies/edp-licences-skos.rdf
@@ -0,0 +1,1609 @@
+<?xml version="1.0"?>
+<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+         xmlns:owl="http://www.w3.org/2002/07/owl#"
+         xmlns:skos="http://www.w3.org/2004/02/skos/core#"
+         xmlns:dc="http://purl.org/dc/elements/1.1/"
+         xmlns:at="http://publications.europa.eu/ontology/authority/"
+         xmlns:osi="https://piveau.eu/ns/osi#"
+         xmlns:edp="https://europeandataportal.eu/voc#">
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CC-BY-SA3.0NL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CC_BYSA_3_0_NL</dc:identifier>
+        <skos:prefLabel xml:lang="nl">Naamsvermelding-GelijkDelen 3.0 Nederland</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="da">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="de">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="el">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="en">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="fi">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="fr">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="hr">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="hu">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="it">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="lv">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="lt">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="nl">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="pl">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="pt">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="ro">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="sl">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="es">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="sv">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="bg">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="et">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="ga">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="mt">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="sk">CC BY-SA 3.0 NL</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/nl/legalcode/"/>
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-sa/3.0/nl/legalcode/"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=CC-BY-SA3.0NL"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CC-BY3.0NL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CC_BY_3_0_NL</dc:identifier>
+        <skos:prefLabel xml:lang="nl">Naamsvermelding 3.0 Nederland</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="da">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="de">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="el">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="en">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="fi">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="fr">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="hr">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="hu">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="it">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="lv">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="lt">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="nl">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="pl">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="pt">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="ro">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="sl">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="es">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="sv">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="bg">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="et">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="ga">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="mt">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="sk">CC BY 3.0 NL</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/3.0/nl/legalcode"/>
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/3.0/nl/legalcode"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=CC-BY3.0NL"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CC-PDM1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CC_PDM_1_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Public Domain Mark 1.0</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="en">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">CC PDM 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">CC PDM 1.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://creativecommons.org/publicdomain/mark/1.0/"/>
+        <skos:exactMatch rdf:resource="https://creativecommons.org/publicdomain/mark/1.0/"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=CC-PDM1.0"/>
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/ccpdm/1.0" />
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CCBY3.0Austria" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CC_BY_3_0_AT</dc:identifier>
+        <skos:prefLabel xml:lang="de">Namensnennung 3.0 Österreich</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="da">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="de">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="el">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="en">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="fi">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="fr">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="hr">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="hu">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="it">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="lv">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="lt">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="nl">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="pl">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="pt">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="es">CC BY 3.0 NL</skos:altLabel>
+        <skos:altLabel xml:lang="ro">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="sl">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="sv">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="bg">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="et">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="ga">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="mt">CC BY 3.0 AT</skos:altLabel>
+        <skos:altLabel xml:lang="sk">CC BY 3.0 AT</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/3.0/at/legalcode"/>
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/3.0/at/legalcode"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=CCBY3.0Austria"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CC-BY-3.0DE" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CC_BY_3_0_DE</dc:identifier>
+        <skos:prefLabel xml:lang="de">Creative Commons Namensnennung 3.0 Deutschland</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="da">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="de">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="el">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="en">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="fi">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="fr">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="hr">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="hu">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="it">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="lv">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="lt">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="nl">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="pl">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="pt">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="ro">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sl">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="es">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sv">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="bg">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="et">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="ga">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="mt">CC BY 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sk">CC BY 3.0 DE</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/3.0/de/"/>
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/3.0/de/"/>
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-de/3.0" />
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CC_BYNC_3_0DE" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CC_BYNC_3_0_DE</dc:identifier>
+        <skos:prefLabel xml:lang="de">Creative Commons Namensnennung-Nicht kommerziell 3.0 Deutschland</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="da">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="de">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="el">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="en">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="fi">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="fr">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="hr">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="hu">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="it">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="lv">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="lt">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="nl">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="pl">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="pt">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="ro">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sl">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="es">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sv">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="bg">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="et">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="ga">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="mt">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sk">CC BY-NC 3.0 DE</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-nc/3.0/de/"/>
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-nc/3.0/de/"/>
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-nc-de/3.0" />
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CC_BYSA_3_0DE" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CC_BYSA_3_0_DE</dc:identifier>
+        <skos:prefLabel xml:lang="de">Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="da">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="de">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="el">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="en">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="fi">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="fr">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="hr">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="hu">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="it">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="lv">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="lt">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="nl">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="pl">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="pt">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="ro">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sl">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="es">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sv">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="bg">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="et">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="ga">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="mt">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:altLabel xml:lang="sk">CC BY-SA 3.0 DE</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-sa/3.0/de/"/>
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/de/"/>
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-sa-de/3.0" />
+    </skos:Concept>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    <skos:Concept rdf:about="http://dcat-ap.de/def/licenses/dl-by-nc-de/1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>DLDE_BYNC_1_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Data licence Germany – attribution – non-commercial – Version 1.0</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="en">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">DL-DE BY-NC 1.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://www.govdata.de/dl-de/by-nc-1-0"/>
+        <skos:exactMatch rdf:resource="http://www.govdata.de/dl-de/by-nc-1-0"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=DL-DE-BY-NC1.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://dcat-ap.de/def/licenses/dl-by-de/1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>DLDE_BY_1_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Data licence Germany – attribution – Version 1.0</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="en">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">DL-DE BY 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">DL-DE BY 1.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://www.govdata.de/dl-de/by-1-0"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=DL-DE-BY1.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://dcat-ap.de/def/licenses/dl-by-de/2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>DLDE_BY_2_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Data licence Germany – attribution – Version 2.0</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="en">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">DL-DE BY 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">DL-DE BY 2.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://www.govdata.de/dl-de/by-2-0"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=DL-DE-BY2.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://dcat-ap.de/def/licenses/dl-zero-de/2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>DLDE_ZERO_2_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Data licence Germany - Zero - Version 2.0</skos:prefLabel>
+        <skos:altLabel xml:lang="cs">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="en">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">DL-DE ZERO 2.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://www.govdata.de/dl-de/zero-2-0"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=DL-DE-ZERO2.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#GFDL-1.1" at:deprecated="true">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>GNU_FDL_1_1</dc:identifier>
+        <skos:prefLabel xml:lang="en">GNU Free Documentation License 1.1</skos:prefLabel>
+        <skos:altLabel xml:lang="en">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="bg">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="cs">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="da">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="de">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="el">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="et">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="fi">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="fr">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="ga">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="hr">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="hu">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="it">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="lv">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="lt">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="mt">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="nl">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="pl">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="pt">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="ro">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="sk">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="sl">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="es">GNU FDL 1.1</skos:altLabel>
+        <skos:altLabel xml:lang="sv">GNU FDL 1.1</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://gnu.org/licenses/old-licenses/fdl-1.1"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=GFDL-1.1"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#GFDL-1.2" at:deprecated="true">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>GNU_FDL_1_2</dc:identifier>
+        <skos:prefLabel xml:lang="en">GNU Free Documentation License 1.2</skos:prefLabel>
+        <skos:altLabel xml:lang="en">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="bg">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="cs">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="da">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="de">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="el">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="et">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="fi">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="fr">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="ga">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="hr">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="hu">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="it">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="lv">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="lt">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="mt">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="nl">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="pl">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="pt">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="ro">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="sk">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="sl">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="es">GNU FDL 1.2</skos:altLabel>
+        <skos:altLabel xml:lang="sv">GNU FDL 1.2</skos:altLabel>
+        <skos:exactMatch rdf:resource="https://gnu.org/licenses/old-licenses/fdl-1.2"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=GFDL-1.2"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#HR-OD" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>HROD</dc:identifier>
+        <skos:prefLabel xml:lang="en">Open Licence - The Republic of Croatia</skos:prefLabel>
+        <skos:altLabel xml:lang="en">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="bg">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="cs">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="da">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="de">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="el">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="et">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="fi">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="fr">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="ga">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="hr">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="hu">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="it">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="lv">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="lt">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="mt">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="nl">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="pl">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="pt">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="ro">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="sk">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="sl">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="es">HR-OD</skos:altLabel>
+        <skos:altLabel xml:lang="sv">HR-OD</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://data.gov.hr/open-licence-republic-croatia"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=HR-OD"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#IODLv1.0" at:deprecated="true">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>IODL_1_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Italian Open Data License v1.0</skos:prefLabel>
+        <skos:altLabel xml:lang="en">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="cs">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">IODL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">IODL 1.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://www.formez.it/iodl/"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=IODLv1.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#IODLv2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>IODL_2_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Italian Open Data License v2.0</skos:prefLabel>
+        <skos:altLabel xml:lang="en">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="cs">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">IODL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">IODL 2.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://www.dati.gov.it/iodl/2.0/"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=IODLv2.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#NLOD" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>NLOD</dc:identifier>
+        <skos:prefLabel xml:lang="en">Norwegian Licence for Open Government Data 1.0</skos:prefLabel>
+        <skos:altLabel xml:lang="en">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="cs">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">NLOD 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">NLOD 1.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://data.norge.no/nlod/en/1.0"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=NLOD"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OGL-NC" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OGL_NC</dc:identifier>
+        <skos:prefLabel xml:lang="en">Non-Commercial Government Licence</skos:prefLabel>
+        <skos:altLabel xml:lang="en">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="bg">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="cs">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="da">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="de">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="el">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="et">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="fi">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="fr">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="ga">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="hr">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="hu">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="it">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="lv">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="lt">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="mt">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="nl">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="pl">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="pt">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="ro">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="sk">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="sl">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="es">OGL NC</skos:altLabel>
+        <skos:altLabel xml:lang="sv">OGL NC</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/non-commercial-government-licence.htm"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=OGL-NC"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OGL-ROU-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OGLROU_1_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Non-Commercial Government Licence</skos:prefLabel>
+        <skos:altLabel xml:lang="en">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="cs">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">OGL-ROU 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">OGL-ROU 1.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://data.gov.ro/base/images/logoinst/OGL-ROU-1.0.pdf"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=OGL-ROU-1.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OGL1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OGL_1_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Open Government Licence 1.0</skos:prefLabel>
+        <skos:altLabel xml:lang="en">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="cs">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">OGL 1.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">OGL 1.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=OGL1.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OGL2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OGL_2_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Open Government Licence 2.0</skos:prefLabel>
+        <skos:altLabel xml:lang="en">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="cs">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">OGL 2.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">OGL 2.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=OGL2.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OGL3.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OGL_3_0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Open Government Licence 3.0</skos:prefLabel>
+        <skos:altLabel xml:lang="en">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="bg">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="cs">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="da">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="de">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="el">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="et">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="fi">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="fr">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="ga">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="hr">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="hu">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="it">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="lv">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="lt">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="mt">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="nl">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="pl">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="pt">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="ro">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="sk">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="sl">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="es">OGL 3.0</skos:altLabel>
+        <skos:altLabel xml:lang="sv">OGL 3.0</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"/>
+        <skos:exactMatch rdf:resource="http://reference.data.gov.uk/id/open-government-licence"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=OGL3.0"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#PSEUL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>PSEUL</dc:identifier>
+        <skos:prefLabel xml:lang="en">INSPIRE End User Licence</skos:prefLabel>
+        <skos:altLabel xml:lang="en">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="bg">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="cs">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="da">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="de">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="el">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="et">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="fi">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="fr">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="ga">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="hr">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="hu">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="it">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="lv">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="lt">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="mt">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="nl">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="pl">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="pt">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="ro">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="sk">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="sl">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="es">PSEUL</skos:altLabel>
+        <skos:altLabel xml:lang="sv">PSEUL</skos:altLabel>
+        <skos:exactMatch rdf:resource="http://www.ordnancesurvey.co.uk/business-and-government/public-sector/mapping-agreements/inspire-licence.html"/>
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=PSEUL"/>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#BSD-2-Clause" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>BSD-2-Clause</dc:identifier>
+        <skos:prefLabel xml:lang="en">2-Clause BSD License</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/BSD-2-Clause"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/bsd" />
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#BSD-3-Clause" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>BSD-3-Clause</dc:identifier>
+        <skos:prefLabel xml:lang="en">3-Clause BSD License</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/BSD-3-Clause"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#APL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>APL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Adaptive Public License 1.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/APL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Apache-1.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Apache-1.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">Apache Software License, version 1.1 (Apache-1.1)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Apache-1.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Apache-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Apache-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Apache License, Version 2.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Apache-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/apache" />
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#APSL-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>APSL-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Apple Public Source License 2.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/APSL-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Artistic-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Artistic-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Artistic License 1.0 (Artistic-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Artistic-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Artistic-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Artistic-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Artistic License 2.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Artistic-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#BSL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>BSL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Boost Software License 1.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/BSL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#BSDplusPatent" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>BSDplusPatent</dc:identifier>
+        <skos:prefLabel xml:lang="en">BSD+Patent</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/BSDplusPatent"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CECILL-2.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CECILL-2.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">Cea Cnrs Inria Logiciel Libre License, version 2.1 (CECILL-2.1)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/CECILL-2.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CDDL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CDDL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Common Development and Distribution License 1.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/CDDL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CPAL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CPAL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Common Public Attribution License Version 1.0 (CPAL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/CPAL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CPL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CPL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Common Public License, version 1.0 (CPL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/CPL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CATOSL-1.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CATOSL-1.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">Computer Associates Trusted Open Source License 1.1 (CATOSL-1.1)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/CATOSL-1.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#EPL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>EPL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Eclipse Public License 1.0 (EPL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/EPL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#EPL-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>EPL-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Eclipse Public License version 2.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/EPL-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#eCos-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>eCos-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">eCos License version 2.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/eCos-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#ECL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>ECL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Educational Community License, Version 1.0 (ECL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/ECL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#ECL-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>ECL-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Educational Community License, Version 2.0 (ECL-2.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/ECL-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#EFL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>EFL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Eiffel Forum License, version 1 (EFL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/EFL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#EFL-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>EFL-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Eiffel Forum License, Version 2</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/EFL-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Entessa" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Entessa</dc:identifier>
+        <skos:prefLabel xml:lang="en">Entessa Public License Version. 1.0 (Entessa)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Entessa"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#EUDatagrid" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>EUDatagrid</dc:identifier>
+        <skos:prefLabel xml:lang="en">EU DataGrid Software License (EUDatagrid)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/EUDatagrid"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Fair" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Fair</dc:identifier>
+        <skos:prefLabel xml:lang="en">Fair License (Fair)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Fair"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Frameworx-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Frameworx-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Frameworx License 1.0 (Frameworx-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Frameworx-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#AGPL-3.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>AGPL-3.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">GNU Affero General Public License version 3</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/AGPL-3.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#GPL-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>GPL-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">GNU General Public License version 2</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/GPL-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#GPL-3.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>GPL-3.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">GNU General Public License version 3</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/GPL-3.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/gpl/3.0" />
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LGPL-2.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LGPL-2.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">GNU Lesser General Public License version 2.1</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LGPL-2.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LGPL-3.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LGPL-3.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">GNU Lesser General Public License version 3</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LGPL-3.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#HPND" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>HPND</dc:identifier>
+        <skos:prefLabel xml:lang="en">Historical Permission Notice and Disclaimer (HPND)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/HPND"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#IPL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>IPL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">IBM Public License Version 1.0 (IPL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/IPL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#IPA" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>IPA</dc:identifier>
+        <skos:prefLabel xml:lang="en">IPA Font License (IPA)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/IPA"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#ISC" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>ISC</dc:identifier>
+        <skos:prefLabel xml:lang="en">ISC License (ISC)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/ISC"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LPPL-1.3c" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LPPL-1.3c</dc:identifier>
+        <skos:prefLabel xml:lang="en">LaTeX Project Public License, Version 1.3c (LPPL-1.3c)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LPPL-1.3c"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#BSD-3-Clause-LBNL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>BSD-3-Clause-LBNL</dc:identifier>
+        <skos:prefLabel xml:lang="en">Lawrence Berkeley National Labs BSD Variant License (BSD-3-Clause-LBNL)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/BSD-3-Clause-LBNL"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LiLiQ-P-1.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LiLiQ-P-1.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">Licence Libre du Québec – Permissive (LiLiQ-P) version 1.1</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LiLiQ-P-1.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LiLiQ-R-1.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LiLiQ-R-1.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">Licence Libre du Québec – Réciprocité (LiLiQ-R) version 1.1</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LiLiQ-R-1.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LiLiQ-Rplus-1.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LiLiQ-Rplus-1.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">Licence Libre du Québec – Réciprocité forte (LiLiQ-R+) version 1.1</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LiLiQ-Rplus-1.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LPL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LPL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Lucent Public License, Plan 9, version 1.0 (LPL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LPL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LPL-1.02" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LPL-1.02</dc:identifier>
+        <skos:prefLabel xml:lang="en">Lucent Public License Version 1.02 (LPL-1.02)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LPL-1.02"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#LPL-1.02" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>LPL-1.02</dc:identifier>
+        <skos:prefLabel xml:lang="en">Lucent Public License Version 1.02 (LPL-1.02)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/LPL-1.02"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#MS-PL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>MS-PL</dc:identifier>
+        <skos:prefLabel xml:lang="en">Microsoft Public License (MS-PL)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/MS-PL"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#MS-RL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>MS-RL</dc:identifier>
+        <skos:prefLabel xml:lang="en">Microsoft Reciprocal License (MS-RL)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/MS-RL"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#MirOS" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>MirOS</dc:identifier>
+        <skos:prefLabel xml:lang="en">MirOS License (MirOS)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/MirOS"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#MIT" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>MIT</dc:identifier>
+        <skos:prefLabel xml:lang="en">The MIT License</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/MIT"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Motosoto" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Motosoto</dc:identifier>
+        <skos:prefLabel xml:lang="en">Motosoto Open Source License - Version 0.9.1 (Motosoto)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Motosoto"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#MPL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>MPL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Mozilla Public License (MPL), version 1.0 (MPL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/MPL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#MPL-1.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>MPL-1.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">Mozilla Public License (MPL), version 1.1 (MPL-1.1)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/MPL-1.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#MPL-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>MPL-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Mozilla Public License (MPL), version 2.0 (MPL-2.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/MPL-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/mozilla" />
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Multics" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Multics</dc:identifier>
+        <skos:prefLabel xml:lang="en">Multics License (Multics)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Multics"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#NASA-1.3" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>NASA-1.3</dc:identifier>
+        <skos:prefLabel xml:lang="en">NASA Open Source Agreement v1.3 (NASA-1.3)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/NASA-1.3"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Naumen" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Naumen</dc:identifier>
+        <skos:prefLabel xml:lang="en">NAUMEN Public License (Naumen)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Naumen"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#NGPL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>NGPL</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Nethack General Public License (NGPL)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/NGPL"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#NOKIA" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>NOKIA</dc:identifier>
+        <skos:prefLabel xml:lang="en">Nokia Open Source License Version 1.0a (NOKIA)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/NOKIA"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#NPOSL-3.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>NPOSL-3.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Non-Profit Open Software License version 3.0 (NPOSL-3.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/NPOSL-3.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#NTP" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>NTP</dc:identifier>
+        <skos:prefLabel xml:lang="en">NTP License (NTP)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/NTP"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OCLC-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OCLC-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The OCLC Research Public License 2.0 License (OCLC-2.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/OCLC-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OGTSL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OGTSL</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Open Group Test Suite License (OGTSL)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/OGTSL"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OSL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OSL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Open Software License, version 1.0 (OSL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/OSL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OSL-2.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OSL-2.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Open Software License, version 2.1 (OSL-2.1)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/OSL-2.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OSL-3.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OSL-3.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Open Software License, version 3.0 (OSL-3.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/OSL-3.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OPL-2.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OPL-2.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">OSET Public License version 2.1</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/OPL-2.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#PHP-3.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>PHP-3.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The PHP License 3.0 (PHP-3.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/PHP-3.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#PostgreSQL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>PostgreSQL</dc:identifier>
+        <skos:prefLabel xml:lang="en">The PostgreSQL Licence (PostgreSQL)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/PostgreSQL"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Python-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Python-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Python License (Python-2.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Python-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#CNRI-Python" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>CNRI-Python</dc:identifier>
+        <skos:prefLabel xml:lang="en">The CNRI portion of the multi-part Python License (CNRI-Python)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/CNRI-Python"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#QPL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>QPL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Q Public License Version (QPL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/QPL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#RPSL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>RPSL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">RealNetworks Public Source License Version 1.0 (RPSL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/RPSL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#RPL-1.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>RPL-1.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">Reciprocal Public License, version 1.1</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/RPL-1.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#RPL-1.5" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>RPL-1.5</dc:identifier>
+        <skos:prefLabel xml:lang="en">Reciprocal Public License 1.5 (RPL-1.5)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/RPL-1.5"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#RSCPL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>RSCPL</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Ricoh Source Code Public License (RSCPL)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/RSCPL"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#OFL-1.1" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>OFL-1.1</dc:identifier>
+        <skos:prefLabel xml:lang="en">SIL OPEN FONT LICENSE (OFL-1.1)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/OFL-1.1"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#SimPL-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>SimPL-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Simple Public License (SimPL-2.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/SimPL-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Sleepycat" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Sleepycat</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Sleepycat License (Sleepycat)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Sleepycat"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#SPL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>SPL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Sun Public License, Version 1.0 (SPL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/SPL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Watcom-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Watcom-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Sybase Open Source Licence (Watcom-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Watcom-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#UPL" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>UPL</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Universal Permissive License (UPL), Version 1.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/UPL"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#NCSA" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>NCSA</dc:identifier>
+        <skos:prefLabel xml:lang="en">The University of Illinois/NCSA Open Source License (NCSA)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/NCSA"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#UCL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>UCL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">Upstream Compatibility License v1.0</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/UCL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#VSL-1.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>VSL-1.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Vovida Software License v. 1.0 (VSL-1.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/VSL-1.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#W3C" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>W3C</dc:identifier>
+        <skos:prefLabel xml:lang="en">The W3C SOFTWARE NOTICE AND LICENSE (W3C)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/W3C"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#WXwindows" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>WXwindows</dc:identifier>
+        <skos:prefLabel xml:lang="en">The wxWindows Library Licence (WXwindows)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/WXwindows"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Xnet" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Xnet</dc:identifier>
+        <skos:prefLabel xml:lang="en">The X.Net, Inc. License (Xnet)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Xnet"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#0BSD" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>0BSD</dc:identifier>
+        <skos:prefLabel xml:lang="en">Zero-Clause BSD / Free Public License 1.0.0 (0BSD)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/0BSD"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#ZPL-2.0" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>ZPL-2.0</dc:identifier>
+        <skos:prefLabel xml:lang="en">The Zope Public License Ver.2.0 (ZPL-2.0)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/ZPL-2.0"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="http://europeandataportal.eu/ontologies/od-licenses#Zlib" at:deprecated="false">
+        <skos:inScheme rdf:resource="http://publications.europa.eu/resource/authority/licence"/>
+        <dc:identifier>Zlib</dc:identifier>
+        <skos:prefLabel xml:lang="en">The zlib/libpng License (Zlib)</skos:prefLabel>
+        <skos:exactMatch rdf:resource="https://opensource.org/licenses/Zlib"/>
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Concept>
+
+    <skos:Description rdf:about="http://publications.europa.eu/resource/authority/licence/EUPL_1_2">
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </skos:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BY">
+        <skos:exactMatch rdf:resource="http://www.opendefinition.org/licenses/cc-by/" />
+        <skos:exactMatch rdf:resource="https://www.opendefinition.org/licenses/cc-by/" />
+        <skos:exactMatch rdf:resource="https://www.opendefinition.org/licenses/cc-by" />
+        <skos:exactMatch rdf:resource="http://www.opendefinition.org/licenses/cc-by" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BY_4_0">
+        <owl:sameAs rdf:resource="http://europeandataportal.eu/ontologies/od-licenses#CC-BY4.0" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by/4.0" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/4.0/deed.es_ES" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/4.0/deed.es_ES" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/4.0/deed.es" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/4.0/deed.es" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/4.0/deed.ca" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/4.0/deed.ca" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/4.0/" />
+        <osi:isOpen rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</osi:isOpen>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYNC">
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-nc/" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-nc/" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-nc" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYNC_4_0">
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-nc/4.0/" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-nc/4.0/" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-nc/4.0" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYNCND_4_0">
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-nc-nd/4.0/" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-nc-nd/4.0/" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYND">
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-nd/" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-nd" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BY_3_0">
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/3.0/es" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/3.0/es" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/3.0/es/" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/3.0/es/" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/3.0/it/" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/3.0/it/" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by/3.0/es/deed.gl" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/3.0/es/deed.gl" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by/3.0/" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYND_3_0">
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-nd/3.0" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYSA_3_0">
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/es/" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/es/" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-sa/3.0/" />
+        <owl:sameAs rdf:resource="https://w3id.org/italia/controlled-vocabulary/licences/A32_CCBYSA30" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYNCND_3_0">
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-nc-nd/3.0/" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-nc-nd/3.0/" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYSA_2_0">
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-sa/2.0/it/" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/it/" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYND_4_0">
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-nd/4.0/" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-nd/4.0" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYSA">
+        <skos:exactMatch rdf:resource="http://www.opendefinition.org/licenses/cc-by-sa/" />
+        <skos:exactMatch rdf:resource="http://www.opendefinition.org/licenses/cc-by-sa" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-sa" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BYSA_4_0">
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-by-sa/4.0" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/licenses/by-sa/4.0/" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/GNU_FDL">
+        <edp:licensingAssistant rdf:resource="https://www.europeandataportal.eu/en/content/show-license?license_id=GFDL-1.3" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/gfdl" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/ODC_BL">
+        <skos:exactMatch rdf:resource="http://www.opendefinition.org/licenses/odc-odbl" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/odbl" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/ODC_BY">
+        <skos:exactMatch rdf:resource="http://www.opendefinition.org/licenses/odc-by" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/odby" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/ODC_PDDL">
+        <skos:exactMatch rdf:resource="http://www.opendefinition.org/licenses/odc-pddl" />
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/odcpddl" />
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/licence/CC_BY_2_5">
+        <owl:sameAs rdf:resource="http://creativecommons.org/licenses/by/2.5/it/" />
+    </rdf:Description>
+
+    <rdf:Descirption rdf:about="http://publications.europa.eu/resource/authority/licence/CC0">
+        <owl:sameAs rdf:resource="http://dcat-ap.de/def/licenses/cc-zero" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/deed.it" />
+        <skos:exactMatch rdf:resource="https://creativecommons.org/publicdomain/zero/1.0/deed.es_ES" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/legalcode" />
+        <skos:exactMatch rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
+        <skos:exactMatch rdf:resource="http://www.opendefinition.org/licenses/cc-zero" />
+    </rdf:Descirption>
+
+</rdf:RDF>
\ No newline at end of file
diff --git a/src/main/resources/edp-vocabularies/edp-machine-readable-format.rdf b/src/main/resources/edp-vocabularies/edp-machine-readable-format.rdf
new file mode 100644
index 0000000000000000000000000000000000000000..40598a669093bc599652d9621d24acbf43b4749a
--- /dev/null
+++ b/src/main/resources/edp-vocabularies/edp-machine-readable-format.rdf
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<rdf:RDF
+        xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+        xmlns:edp="https://europeandataportal.eu/voc#">
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/CSV">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GEOJSON">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ICS">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JSON">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JSON_LD">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/KML">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/KMZ">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/NETCDF">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODS">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDFA">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_N_QUADS">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_N_TRIPLES">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TRIG">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TURTLE">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_XML">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RSS">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/SHP">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLS">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XLSX">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XML">
+        <edp:isMachineReadable rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isMachineReadable>
+    </rdf:Description>
+
+</rdf:RDF>
\ No newline at end of file
diff --git a/src/main/resources/edp-vocabularies/edp-non-proprietary-format.rdf b/src/main/resources/edp-vocabularies/edp-non-proprietary-format.rdf
new file mode 100644
index 0000000000000000000000000000000000000000..38387f8b3f161fc3c4bc94bb88fa25104b394ffb
--- /dev/null
+++ b/src/main/resources/edp-vocabularies/edp-non-proprietary-format.rdf
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<rdf:RDF
+        xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+        xmlns:edp="https://europeandataportal.eu/voc#">
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/BMP">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/CSV">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/DBF">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GEOJSON">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/GZIP">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/HTML">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ICS">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JPEG2000">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JSON">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/JSON_LD">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/KML">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/KMZ">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/NETCDF">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ODS">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/PNG">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_N_QUADS">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_N_TRIPLES">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TRIG">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_TURTLE">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RDF_XML">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RSS">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/RTF">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TAR">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TIFF">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TSV">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/TXT">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/WMS_SRVC">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/XML">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+    <rdf:Description rdf:about="http://publications.europa.eu/resource/authority/file-type/ZIP">
+        <edp:isNonProprietary rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</edp:isNonProprietary>
+    </rdf:Description>
+
+</rdf:RDF>
\ No newline at end of file
diff --git a/src/main/resources/edp-vocabularies/edp-scoring-skos.rdf b/src/main/resources/edp-vocabularies/edp-scoring-skos.rdf
new file mode 100644
index 0000000000000000000000000000000000000000..6f811935a115fe77beec0b14737f865007b0e96a
--- /dev/null
+++ b/src/main/resources/edp-vocabularies/edp-scoring-skos.rdf
@@ -0,0 +1,40 @@
+<?xml version="1.0"?>
+<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:skos="http://www.w3.org/2004/02/skos/core#"
+         xmlns:dc="http://purl.org/dc/elements/1.1/">
+
+    <skos:ConceptScheme rdf:about="https://piveau.eu/ns/scoring#scoring">
+        <rdfs:label>Scoring</rdfs:label>
+        <skos:prefLabel xml:lang="en">Scoring</skos:prefLabel>
+    </skos:ConceptScheme>
+
+    <skos:Concept rdf:about="https://piveau.eu/ns/scoring#excellent">
+        <skos:inScheme rdf:resource="https://piveau.eu/ns/scoring#scoring" />
+        <dc:description xml:lang="en">A scoring value greater than 350.</dc:description>
+        <dc:identifier>EXCELLENT</dc:identifier>
+        <skos:prefLabel xml:lang="en">Excellent</skos:prefLabel>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="https://piveau.eu/ns/scoring#good">
+        <skos:inScheme rdf:resource="https://piveau.eu/ns/scoring#scoring" />
+        <dc:description xml:lang="en">A scoring value between 221 and 350.</dc:description>
+        <dc:identifier>GOOD</dc:identifier>
+        <skos:prefLabel xml:lang="en">Good</skos:prefLabel>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="https://piveau.eu/ns/scoring#enough">
+        <skos:inScheme rdf:resource="https://piveau.eu/ns/scoring#scoring" />
+        <dc:description xml:lang="en">A scoring value between 120 and 220.</dc:description>
+        <dc:identifier>ENOUGH</dc:identifier>
+        <skos:prefLabel xml:lang="en">Enough</skos:prefLabel>
+    </skos:Concept>
+
+    <skos:Concept rdf:about="https://piveau.eu/ns/scoring#bad">
+        <skos:inScheme rdf:resource="https://piveau.eu/ns/scoring#scoring" />
+        <dc:description xml:lang="en">A scoring value less than 120.</dc:description>
+        <dc:identifier>BAD</dc:identifier>
+        <skos:prefLabel xml:lang="en">Bad</skos:prefLabel>
+    </skos:Concept>
+
+</rdf:RDF>
diff --git a/src/test/java/de/landsh/opendata/FixBrokenDcatFilesTest.java b/src/test/java/de/landsh/opendata/FixBrokenDcatFilesTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..4634bb88243a3b0bc26d4e0c66a5a6202a57a33b
--- /dev/null
+++ b/src/test/java/de/landsh/opendata/FixBrokenDcatFilesTest.java
@@ -0,0 +1,51 @@
+package de.landsh.opendata;
+
+import org.apache.commons.io.FileUtils;
+import org.apache.jena.rdf.model.*;
+import org.junit.Test;
+
+import java.io.File;
+import java.io.FileReader;
+import java.io.IOException;
+import java.nio.charset.StandardCharsets;
+import java.util.HashSet;
+import java.util.Set;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+public class FixBrokenDcatFilesTest {
+    @Test
+    public void fixFile() throws IOException {
+        final File file = new File(getClass().getResource("/148.ttl").getFile());
+        final File tempFile = File.createTempFile("data", "ttl");
+        tempFile.deleteOnExit();
+        FileUtils.copyFile(file, tempFile);
+
+        FixBrokenDcatFiles.fixFile(tempFile);
+
+        final Model model = ModelFactory.createDefaultModel();
+        model.read(new FileReader(tempFile), "", "TTL");
+
+        Set<String> subjects = getSubjectURIs(model);
+        assertEquals(3,subjects.size());
+        assertTrue(subjects.contains("https://ckan.www.open.nrw.de/dataset/b32de71c-6045-4348-9ca7-31008d9a8ac6"));
+        assertTrue(subjects.contains("https://ckan.www.open.nrw.de/dataset/fee85fc5-2522-4234-8f67-726c4848baad/resource/e88e1fa5-6495-4c96-a525-8628fb7c78ee"));
+        assertTrue(subjects.contains("https://ckan.www.open.nrw.de/dataset/b3f15c00-8ac0-460f-9788-ed7ff0409357/resource/25cadb30-651f-48e9-8fe0-7664c5c8ceec"));
+
+    }
+
+    private static Set<String> getSubjectURIs(Model model) {
+        final Set<String> result = new HashSet<>();
+        final ResIterator it = model.listSubjects();
+        while (it.hasNext()) {
+            Resource resource = it.next();
+            if( resource.getURI() != null) {
+                   result.add(resource.getURI());
+            }
+        }
+        return result;
+    }
+
+
+}
diff --git a/src/test/resources/148.ttl b/src/test/resources/148.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..29b74bbdc50eca5515a4d105375dce680fe1300d
--- /dev/null
+++ b/src/test/resources/148.ttl
@@ -0,0 +1,131 @@
+@prefix adms: <http://www.w3.org/ns/adms#> .
+@prefix dcat: <http://www.w3.org/ns/dcat#> .
+@prefix dcatde: <http://dcat-ap.de/def/dcatde/> .
+@prefix dct: <http://purl.org/dc/terms/> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix gsp: <http://www.opengis.net/ont/geosparql#> .
+@prefix hydra: <http://www.w3.org/ns/hydra/core#> .
+@prefix locn: <http://www.w3.org/ns/locn#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix schema: <http://schema.org/> .
+@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
+@prefix spdx: <http://spdx.org/rdf/terms#> .
+@prefix time: <http://www.w3.org/2006/time> .
+@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+<https://ckan.www.open.nrw.de/dataset/b32de71c-6045-4348-9ca7-31008d9a8ac6> a dcat:Dataset ;
+    dcatde:contributorID <http://dcat-ap.de/def/contributors/openNRW>,
+        <https://opendata.duesseldorf.de> ;
+    dcatde:maintainer [ a foaf:Organization ;
+            foaf:name "Landeshauptstadt Düsseldorf" ] ;
+    dct:creator [ a foaf:Organization ;
+            foaf:mbox "opendata@duesseldorf.de" ;
+            foaf:name "Landeshauptstadt Düsseldorf" ] ;
+    dct:description """<p>Der Datensatz enthält die jeweils aktuellste Datei mit den Werten für Stickoxide von den beiden städtischen Messstationen. Die Dateien in diesem Datensatz werden einmal pro Stunde um Messwerte für Stickstoffmonoxid und Stickstoffdioxid ergänzt. Die Werte sind in  µg/m³ angegeben.</p>
+
+<p>Die <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-stickoxide-zeitreihen-der-st%C3%A4dtischen-messstellen" target="_blank" title="Zeitreihen Stickoxidwerte">Zeitreihen</a> und die <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-stickoxide-jahresmittelwerte-d%C3%BCsseldorf-seit-1995" target="_blank" title="Jahresmittelwerte Stickoxide">Jahresmittelwerte</a> für Stickoxide in Düsseldorf sind in entsprechenden Datensätzen gespeichert. Ebenso die Daten über die anderen Schadstoffe <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-benzol-jahresmittelwerte-d%C3%BCsseldorf-seit-1995" target="_blank" title="Jahresmittelwerte Benzol">Benzol</a>, <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-ozon-%C3%BCberschreitungen-der-grenzwerte-d%C3%BCsseldorf" target="_blank" title="Ozon Grenzwertüberschreitungen">Ozon</a>, <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-ru%C3%9F-jahresmittelwerte-d%C3%BCsseldorf-seit-1995" target="_blank" title="Jahresmittelwerte Ruß">Ruß </a>und <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-feinstaub-tageswerte-d%C3%BCsseldorf" target="_blank" title="Tageswerte Feinstaub">Tageswerte für  Feinstaub</a>.</p>
+
+<p>Neben den Archivdaten für Feinstaub werden auch Daten zu <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-feinstaub-anzahl-%C3%BCberschreitungstage-d%C3%BCsseldorf" target="_blank" title="Feinstaub Überschreitungstage">Überschreitungstagen</a> und <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-feinstaub-jahresmittelwerte-d%C3%BCsseldorf-seit-1995" target="_blank" title="Feinstaub Jahresmittelwerte">Jahresmittelwerten</a> bereitgestellt.</p>
+
+<p>Die Landeshauptsstadt Düsseldorf führt Luftqualitätsmessungen durch und bewertet die Ergenisse anhand der gesetzlichen Grundlagen. Aktuell ist es das Bundesimmissionsschutzgesetz in Kombination mit der 39. Bundesimmissionschutz-Verordnung.<br />
+Weitere Informationen finden Sie auf der Seite '<a href="https://www.duesseldorf.de/umweltamt/umweltthemen-von-a-z/luft.html" target="_blank" title="Umweltamt Düsseldorf Luftqualität">Luftqualität</a>' des Umweltamtes. Die Werte der städtischen Messstationen an der <a href="https://www.duesseldorf.de/umweltamt/umweltthemen-von-a-z/luft/luftmesswerte/luftmesswerte-auf-der-dorotheenstrasse.html" target="_blank" title="Aktuelle Luftmesswerte Dorotheenstraße">Dorotheenstraße</a> und der <a href="https://www.duesseldorf.de/umweltamt/umweltthemen-von-a-z/luft/luftmesswerte/luftmesswerte-auf-der-brinckmannstrasse.html" target="_blank" title="Aktuelle Luftmesswerte Brinckmannstraße">Brinckmannstraße</a> werden stündlich aktualisiert.</p>
+
+<p>Die <a href="https://opendata.duesseldorf.de/dataset/luftmesswerte-standorte-der-st%C3%A4dtischen-messstationen" target="_blank" title="Standorte der Messstationen">Geoinformationen</a> der städtischen Messstationen sind in einem eigenen Datensatz verfügbar.</p>
+
+<p>Die Datei mit den aktuellen werten für Stickoxide enthalten folgende Spalteninformationen:</p>
+
+<ul><li>Messzeitpunkt: Datum und Uhrzeit der Messungen</li>
+	<li>Stickstoffmonoxid: Aktuelle Messwerte für NO (Stickstoffmonoxid) in  µg/m³</li>
+	<li>Stickstoffdioxid: Aktuelle Messwerte für NO2 (Stickstoffdioxid) in  µg/m³</li>
+</ul><p> </p>
+""" ;
+    dct:identifier "b32de71c-6045-4348-9ca7-31008d9a8ac6" ;
+    dct:issued "2018-11-15T09:51:54+01:00"^^xsd:dateTime ;
+    dct:modified "2020-04-06T09:47:18+02:00"^^xsd:dateTime ;
+    dct:publisher <https://ckan.www.open.nrw.de/organization/b209b0fc-4465-4ba7-925e-38ac564fd525> ;
+    dct:title "Luftmesswerte für Stickoxide - Die aktuellen Werte von Düsseldorf" ;
+    adms:identifier "b32de71c-6045-4348-9ca7-31008d9a8ac6" ;
+    dcat:contactPoint [ a vcard:Organization ;
+            vcard:fn "Landeshauptstadt Düsseldorf" ;
+            vcard:hasEmail <mailto:opendata@duesseldorf.de> ] ;
+    dcat:distribution <https://ckan.www.open.nrw.de/dataset/b32de71c-6045-4348-9ca7-31008d9a8ac6/resource/5f639492-5773-49a7-aa5c-31f54cd6327c>,
+        <https://ckan.www.open.nrw.de/dataset/b32de71c-6045-4348-9ca7-31008d9a8ac6/resource/b8c48fa3-7160-43b6-825f-75adab558946> ;
+    dcat:keyword "open-data-düsseldorf" ;
+    dcat:landingPage <https://opendata.duesseldorf.de/dataset/luftmesswerte-f%C3%BCr-stickoxide-die-aktuellen-werte-von-d%C3%BCsseldorf> ;
+    dcat:theme <http://publications.europa.eu/resource/authority/data-theme/ENVI> .
+
+<https://ckan.www.open.nrw.de/dataset/b32de71c-6045-4348-9ca7-31008d9a8ac6/resource/5f639492-5773-49a7-aa5c-31f54cd6327c> a dcat:Distribution ;
+    dct:description """<p>CSV-Datei mit fortlaufend aktualisierten Werten der Messstation an der Dorotheenstraße.</p>
+
+<p>Jede Stunde um 5 Minuten nach wird diese Datei um die aktuellen Werte für Stickstoffmonoxid und Stickstoffdioxid ergänzt.</p>
+""" ;
+    dct:format <http://publications.europa.eu/resource/authority/file-type/CSV> ;
+    dct:language <http://publications.europa.eu/resource/authority/language/DEU> ;
+    dct:license <https://www.govdata.de/dl-de/zero-2-0> ;
+    dcat:accessURL <http://%3C%21--
+This%20file%20is%20not%20used%20by%20Drupal%20core%2C%20which%20uses%20theme%20functions%20instead.
+See%20http://api.drupal.org/api/function/theme_field/7%20for%20details.
+After%20copying%20this%20file%20to%20your%20theme%27s%20folder%20and%20customizing%20it%2C%20remove%20this
+HTML%20comment.
+--%3E
+%3Cdiv%20class=%22field%20field-name-field-link-remote-file%20field-type-file%20field-label-hidden%22%3E
+%20%20%20%20%3Cdiv%20class=%22field-items%22%3E
+%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class=%22field-item%20even%22%3Ehttps://www.duesseldorf.de/fileadmin/rawdata/luft/Dorotheenstrasse.csv%3C/div%3E
+%20%20%20%20%20%20%3C/div%3E
+%3C/div%3E> .
+
+<https://ckan.www.open.nrw.de/dataset/fee85fc5-2522-4234-8f67-726c4848baad/resource/e88e1fa5-6495-4c96-a525-8628fb7c78ee> a dcat:Distribution ;
+    dct:description """<p>JSON-Datei der Wohnbevölkerung insgesamt für die einzelnen Wohnquartiere nach Meldeverhältnis in Düsseldorf für das Jahr 2017</p>
+""" ;
+    dct:format <http://publications.europa.eu/resource/authority/file-type/JSON> ;
+    dct:language <http://publications.europa.eu/resource/authority/language/DEU> ;
+    dct:license <https://www.govdata.de/dl-de/zero-2-0> ;
+    dcat:accessURL <https://opendata.duesseldorf.de/api/action/datastore/search.json?resource_id=9f1d8582-a550-44a5-b781-af76d48b1fd1> .
+
+
+<https://ckan.www.open.nrw.de/dataset/dcf6b6f7-9651-4ea5-96bc-137ed4bc3b6f/resource/273992a0-87cc-4ace-94b9-7fdcd0108fa4> a dcat:Distribution ;
+    dct:description """<p>GPX-Datei der Laufstrecke "Zoopark"</p>
+
+<p>Insbesondere für <strong>Laufeinsteiger*innen </strong>eignet sich die rund <strong>1,7 km</strong> lange Runde durch den <strong>Zoopark </strong>im Stadtteil Düsseltal. Im zweiten Weltkrieg zerstört, ist der ehemalige Tierpark im Jahr 1951 von Ulrich Wolf zum Stadtteilpark umgebaut worden und bietet Sportlerinnen und Sportlern eine paradiesische Laufrunde. Eine <strong>durchgehende Beleuchtung</strong> macht das Laufen zu jeder Zeit möglich.</p>
+
+<p>Der Start kann beliebig gewählt werden. Kostenpflichtiges Parken ist am Eisstadion möglich. Für diejenigen, die mit dem <acronym title="Öffentlicher Personennahverkehr">ÖPNV</acronym> anreisen möchten, sind die Haltestellen "Grünerstraße" und "Brehmplatz" zu nutzen.</p>
+
+<table class="contenttable stacktable large-only"><tbody><tr><td>Stadtteil</td>
+			<td>Düsseltal</td>
+		</tr><tr><td>Start und Ziel</td>
+			<td>beliebig, kostenpflichtiges Parken am Eisstadion möglich</td>
+		</tr><tr><td>Beschreibung</td>
+			<td>Rundkurs im alten Tierpark</td>
+		</tr><tr><td>Streckenbeschaffenheit</td>
+			<td>Asphalt- und Parkboden</td>
+		</tr><tr><td>Beleuchtung</td>
+			<td>vorhanden</td>
+		</tr></tbody></table><p>Weitere Informationen: <a href="https://www.duesseldorf.de/sportamt/laufen-in-duesseldorf/zoopark.html" target="_blank" title="Link zur Laufstrecke Zoopark">https://www.duesseldorf.de/sportamt/laufen-in-duesseldorf/zoopark.html</a></p>
+""" ;
+    dct:format "gpx" ;
+    dct:language <http://publications.europa.eu/resource/authority/language/DEU> ;
+    dct:license <https://www.govdata.de/dl-de/zero-2-0> ;
+    dcat:accessURL <http://%3C%21--
+This%20file%20is%20not%20used%20by%20Drupal%20core%2C%20which%20uses%20theme%20functions%20instead.
+See%20http://api.drupal.org/api/function/theme_field/7%20for%20details.
+After%20copying%20this%20file%20to%20your%20theme%27s%20folder%20and%20customizing%20it%2C%20remove%20this
+HTML%20comment.
+--%3E
+%3Cdiv%20class=%22field%20field-name-field-link-remote-file%20field-type-file%20field-label-hidden%22%3E
+%20%20%20%20%3Cdiv%20class=%22field-items%22%3E
+%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class=%22field-item%20even%22%3Ehttps://www.duesseldorf.de/fileadmin/Amt52/laufen_in_duesseldorf/laufstrecken/GPS_Track_Zoopark.gpx%3C/div%3E
+%20%20%20%20%20%20%3C/div%3E
+%3C/div%3E> .
+
+
+<https://ckan.www.open.nrw.de/dataset/b3f15c00-8ac0-460f-9788-ed7ff0409357/resource/25cadb30-651f-48e9-8fe0-7664c5c8ceec> a dcat:Distribution ;
+    dct:description """<p>CSV-Datei des täglichen Wasserstand des Rheins um 5.00 Uhr am Düsseldorfer Pegel für das Jahr 2002</p>
+""" ;
+    dct:format <http://publications.europa.eu/resource/authority/file-type/CSV> ;
+    dct:language <http://publications.europa.eu/resource/authority/language/DEU> ;
+    dct:license <https://www.govdata.de/dl-de/zero-2-0> ;
+    dcat:accessURL <https://opendata.duesseldorf.de/sites/default/files/Rheinpegel_Tag%202002_0.csv> .