Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DCAT vocabulary version 2 #645

Merged
merged 2 commits into from Dec 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions jena-core/src/main/java/org/apache/jena/vocabulary/DCAT.java
Expand Up @@ -48,6 +48,11 @@ public static String getURI() {
public static final Resource Dataset = m.createResource(NS + "Dataset");
public static final Resource Distribution = m.createResource(NS + "Distribution");

// Classes added in DCAT version 2
public static final Resource DataService = m.createResource(NS + "DataService");
public static final Resource Relationship = m.createResource(NS + "Relationship");
public static final Resource Role = m.createResource(NS + "Role");

// Properties
public static final Property accessURL = m.createProperty(NS + "accessURL");
public static final Property byteSize = m.createProperty(NS + "byteSize");
Expand All @@ -61,4 +66,22 @@ public static String getURI() {
public static final Property record = m.createProperty(NS + "record");
public static final Property theme = m.createProperty(NS + "theme");
public static final Property themeTaxonomy = m.createProperty(NS + "themeTaxonomy");

// Properties added in DCAT version 2
public static final Property accessService = m.createProperty(NS + "accessService");
public static final Property bbox = m.createProperty(NS + "bbox");
public static final Property catalog = m.createProperty(NS + "catalog");
public static final Property centroid = m.createProperty(NS + "centroid");
public static final Property compressFormat = m.createProperty(NS + "compressFormat");
public static final Property endDate = m.createProperty(NS + "endDate");
public static final Property endpointDescription = m.createProperty(NS + "endpointDescription");
public static final Property endpointURL = m.createProperty(NS + "endpointURL");
public static final Property hadRole = m.createProperty(NS + "hadRole");
public static final Property packageFormat = m.createProperty(NS + "packageFormat");
public static final Property qualifiedRelation = m.createProperty(NS + "qualifiedRelation");
public static final Property servesDataset = m.createProperty(NS + "servesDataset");
public static final Property service = m.createProperty(NS + "service");
public static final Property spatialResolutionInMeters = m.createProperty(NS + "spatialResolutionInMeters");
public static final Property startDate = m.createProperty(NS + "startDate");
public static final Property temporalResolution = m.createProperty(NS + "temporalResolution");
}