Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,15 @@ public class DCAT {
/** dcat:record */
public static final IRI HAS_RECORD;

/** dcat:resource */
public static final IRI HAS_RESOURCE;

/** dcat:service */
public static final IRI HAS_SERVICE;

/** dcat:hasVersion */
public static final IRI HAS_VERSION;

/** dcat;inCatalog, inverse property, see section 7 of DCAT v3 */
public static final IRI IN_CATALOG;

Expand Down Expand Up @@ -221,7 +227,9 @@ public class DCAT {
HAS_CURRENT_VERSION = Vocabularies.createIRI(NAMESPACE, "hasCurrentVersion");
HAS_DISTRIBUTION = Vocabularies.createIRI(NAMESPACE, "distribution");
HAS_RECORD = Vocabularies.createIRI(NAMESPACE, "record");
HAS_RESOURCE = Vocabularies.createIRI(NAMESPACE, "resource");
HAS_SERVICE = Vocabularies.createIRI(NAMESPACE, "service");
HAS_VERSION = Vocabularies.createIRI(NAMESPACE, "hasVersion");
IN_CATALOG = Vocabularies.createIRI(NAMESPACE, "inCatalog");
IN_SERIES = Vocabularies.createIRI(NAMESPACE, "inSeries");
IS_DISTRIBUTION_OF = Vocabularies.createIRI(NAMESPACE, "isDistributionOf");
Expand Down
Loading