TREEcg / extract-cbd-shape

Get all RDF triples/quads related to an entity based on CBD and a SHACL shape
https://treecg.github.io/extract-cbd-shape/
MIT License
8 stars 2 forks source link

Running against a complex problem I believe could be a bug #22

Closed pietercolpaert closed 1 month ago

pietercolpaert commented 3 months ago

The command and output:

pieter@pieter-Latitude-7430:~/Projects/extract-cbd-shape$ ts-node bin/extract.ts 'https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#ActivityShape' https://raw.githubusercontent.com/pietercolpaert/extract-cbd-shape/main/extract-cbd-shape-ap.ttl#ShapeShape
Maybe dereferencing https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#ActivityShape (not all paths are found (((<http://www.w3.org/ns/shacl#property> || <http://www.w3.org/ns/shacl#and> || <http://www.w3.org/ns/shacl#or> || <http://www.w3.org/ns/shacl#xone>) || <http://www.w3.org/ns/shacl#path>)))
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#ActivityShape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#xone> _:n3-63.
_:n3-63 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#UpsertShape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n3-64.
_:n3-64 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#DeleteShape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#DeleteShape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#closed> true;
    <http://www.w3.org/ns/shacl#ignoredProperties> _:n3-67.
_:n3-67 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:n3-68 <http://www.w3.org/ns/shacl#path> <https://www.w3.org/ns/activitystreams#object>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#IRI>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#maxCount> 1.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#DeleteShape> <http://www.w3.org/ns/shacl#targetClass> <https://www.w3.org/ns/activitystreams#Delete>;
    <http://www.w3.org/ns/shacl#property> _:n3-68, <https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#PublishedPropertyShape>.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#PublishedPropertyShape> a <http://www.w3.org/ns/shacl#PropertyShape>;
    <http://www.w3.org/ns/shacl#path> <https://www.w3.org/ns/activitystreams#published>;
    <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#dateTime>;
    <http://www.w3.org/ns/shacl#minCount> 0;
    <http://www.w3.org/ns/shacl#maxCount> 1.

I cannot explain here why https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#UpsertShape is not further explored as it contains triples in the page, but https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#DeleteShape is.

pietercolpaert commented 2 months ago

I think the problem lies within sh:path ( [ sh:zeroOrMorePath rdf:rest ] rdf:first ) ; not correctly returning multiple results. We should test the zeroOrMorePath with multiple entries

pietercolpaert commented 2 months ago

@ajuvercr I think this piece of code is the culprit here: https://github.com/TREEcg/extract-cbd-shape/blob/main/lib/Path.ts#L273 → Is this properly considering that ZeroOrMore can return multiple paths, similarly to an alternativePath?

pietercolpaert commented 1 month ago

This is fixed in #31

pieter@pieter-Latitude-7430:~/Projects/extract-cbd-shape$ ts-node bin/extract.ts 'https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#ActivityShape' https://raw.githubusercontent.com/pietercolpaert/extract-cbd-shape/main/extract-cbd-shape-ap.ttl#ShapeShape
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#ActivityShape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#xone> _:b1_n3-0.
_:b1_n3-0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#UpsertShape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-1.
_:b1_n3-1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#DeleteShape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#UpsertShape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#closed> true;
    <http://www.w3.org/ns/shacl#ignoredProperties> _:b1_n3-2.
_:b1_n3-2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#UpsertShape> <http://www.w3.org/ns/shacl#property> _:b1_n3-3, <https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#PublishedPropertyShape>;
    <http://www.w3.org/ns/shacl#targetClass> <https://www.w3.org/ns/activitystreams#Create>, <https://www.w3.org/ns/activitystreams#Update>.
_:b1_n3-3 <http://www.w3.org/ns/shacl#path> <https://www.w3.org/ns/activitystreams#object>;
    <http://www.w3.org/ns/shacl#node> <https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#EntityShape>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#maxCount> 1.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#EntityShape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#or> _:b1_n3-6.
_:b1_n3-6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-7.
_:b1_n3-7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-8.
_:b1_n3-8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-9.
_:b1_n3-9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://data.europa.eu/r5r/shacl_shapes#DataService_Shape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-10.
_:b1_n3-10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://data.europa.eu/r5r/shacl_shapes#Agent_Shape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-11.
_:b1_n3-11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://data.europa.eu/r5r/shacl_shapes#Kind_Shape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-12.
_:b1_n3-12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://data.europa.eu/r5r/shacl_shapes#LicenseDocument_Shape>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#targetClass> <http://www.w3.org/ns/dcat#Catalog>;
    <http://www.w3.org/ns/shacl#property> _:b1_n3-29.
_:b1_n3-29 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/language>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-30.
_:b1_n3-30 <http://www.w3.org/ns/shacl#path> <http://data.europa.eu/r5rapplicableLegislation>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#IRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-31.
_:b1_n3-31 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/license>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-32.
_:b1_n3-32 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/issued>;
    <http://www.w3.org/ns/shacl#node> <http://data.europa.eu/r5r/shacl_shapes#DateOrDateTimeDataType_Shape>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-33.
_:b1_n3-33 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/spatial>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-34.
_:b1_n3-34 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/hasPart>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-35.
_:b1_n3-35 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/isPartOf>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-36.
_:b1_n3-36 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/modified>;
    <http://www.w3.org/ns/shacl#node> <http://data.europa.eu/r5r/shacl_shapes#DateOrDateTimeDataType_Shape>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-37.
_:b1_n3-37 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/rights>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-38.
_:b1_n3-38 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#record>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-39.
_:b1_n3-39 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#themeTaxonomy>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-40.
_:b1_n3-40 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#service>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-41.
_:b1_n3-41 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#catalog>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-42.
_:b1_n3-42 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/creator>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-43.
_:b1_n3-43 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#dataset>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-44.
_:b1_n3-44 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/description>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-45.
_:b1_n3-45 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/publisher>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-46.
_:b1_n3-46 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/title>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-47.
_:b1_n3-47 <http://www.w3.org/ns/shacl#path> <http://xmlns.com/foaf/0.1/homepage>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Catalog_Shape> <http://www.w3.org/2000/01/rdf-schema#label> "Catalog"@en;
    <http://www.w3.org/ns/shacl#class> <http://www.w3.org/ns/dcat#Catalog>.
<http://data.europa.eu/r5r/shacl_shapes#DateOrDateTimeDataType_Shape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#or> _:b1_n3-96.
_:b1_n3-96 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:b1_n3-97.
_:b1_n3-97 <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#date>.
_:b1_n3-96 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-98.
_:b1_n3-98 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:b1_n3-99.
_:b1_n3-99 <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#dateTime>.
_:b1_n3-98 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-100.
_:b1_n3-100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:b1_n3-101.
_:b1_n3-101 <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#gYear>.
_:b1_n3-100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b1_n3-102.
_:b1_n3-102 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:b1_n3-103.
_:b1_n3-103 <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#gYearMonth>.
_:b1_n3-102 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
<http://data.europa.eu/r5r/shacl_shapes#DateOrDateTimeDataType_Shape> <http://www.w3.org/2000/01/rdf-schema#label> "Date time date disjunction";
    <http://www.w3.org/2000/01/rdf-schema#comment> "Date time date disjunction shape checks that a datatype property receives a temporal value: date, dateTime, gYear or gYearMonth literal";
    <http://www.w3.org/ns/shacl#message> "The values must be data typed as either xsd:date, xsd:dateTime, xsd:gYear or xsd:gYearMonth".
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#targetClass> <http://www.w3.org/ns/dcat#Dataset>;
    <http://www.w3.org/ns/shacl#property> _:b1_n3-60.
_:b1_n3-60 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/description>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-61.
_:b1_n3-61 <http://www.w3.org/ns/shacl#path> <http://data.europa.eu/r5rapplicableLegislation>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#IRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-62.
_:b1_n3-62 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/title>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-63.
_:b1_n3-63 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/identifier>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-64.
_:b1_n3-64 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#contactPoint>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-65.
_:b1_n3-65 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#distribution>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-66.
_:b1_n3-66 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#keyword>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-67.
_:b1_n3-67 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/publisher>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-68.
_:b1_n3-68 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/spatial>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-69.
_:b1_n3-69 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/temporal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-70.
_:b1_n3-70 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#theme>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-71.
_:b1_n3-71 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/accessRights>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-72.
_:b1_n3-72 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/accrualPeriodicity>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-73.
_:b1_n3-73 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/conformsTo>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-74.
_:b1_n3-74 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/hasVersion>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-75.
_:b1_n3-75 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/isVersionOf>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-76.
_:b1_n3-76 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/issued>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>;
    <http://www.w3.org/ns/shacl#shape> <http://data.europa.eu/r5r/shacl_shapes#DateOrDateTimeDataType_Shape>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-77.
_:b1_n3-77 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/language>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-78.
_:b1_n3-78 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/modified>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>;
    <http://www.w3.org/ns/shacl#shape> <http://data.europa.eu/r5r/shacl_shapes#DateOrDateTimeDataType_Shape>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-79.
_:b1_n3-79 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/provenance>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-80.
_:b1_n3-80 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/relation>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#BlankNodeOrIRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-81.
_:b1_n3-81 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/source>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-82.
_:b1_n3-82 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/type>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-83.
_:b1_n3-83 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/2002/07/owl#versionInfo>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-84.
_:b1_n3-84 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/adms#versionNotes>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-85.
_:b1_n3-85 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/adms#identifier>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-86.
_:b1_n3-86 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/adms#sample>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-87.
_:b1_n3-87 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#landingPage>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-88.
_:b1_n3-88 <http://www.w3.org/ns/shacl#path> <http://xmlns.com/foaf/0.1/page>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-89.
_:b1_n3-89 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#qualifiedRelation>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-90.
_:b1_n3-90 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/isReferencedBy>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#BlankNodeOrIRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-91.
_:b1_n3-91 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/prov#qualifiedAttribution>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-92.
_:b1_n3-92 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/prov#wasGeneratedBy>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-93.
_:b1_n3-93 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#temporalResolution>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#duration>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-94.
_:b1_n3-94 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#spatialResolutionInMeters>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#decimal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-95.
_:b1_n3-95 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/creator>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Dataset_Shape> <http://www.w3.org/2000/01/rdf-schema#label> "Dataset"@en;
    <http://www.w3.org/ns/shacl#class> <http://www.w3.org/ns/dcat#Dataset>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#targetClass> <http://www.w3.org/ns/dcat#Distribution>;
    <http://www.w3.org/ns/shacl#property> _:b1_n3-110.
_:b1_n3-110 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/conformsTo>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-111.
_:b1_n3-111 <http://www.w3.org/ns/shacl#path> <http://data.europa.eu/r5rapplicableLegislation>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#IRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-112.
_:b1_n3-112 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/issued>;
    <http://www.w3.org/ns/shacl#node> <http://data.europa.eu/r5r/shacl_shapes#DateOrDateTimeDataType_Shape>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-113.
_:b1_n3-113 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/language>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-114.
_:b1_n3-114 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/modified>;
    <http://www.w3.org/ns/shacl#node> <http://data.europa.eu/r5r/shacl_shapes#DateOrDateTimeDataType_Shape>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-115.
_:b1_n3-115 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/rights>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-116.
_:b1_n3-116 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/title>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-117.
_:b1_n3-117 <http://www.w3.org/ns/shacl#path> <http://spdx.org/rdf/terms#checksum>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-118.
_:b1_n3-118 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/adms#status>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-119.
_:b1_n3-119 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#byteSize>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#decimal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-120.
_:b1_n3-120 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#downloadURL>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#BlankNodeOrIRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-121.
_:b1_n3-121 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#mediaType>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-122.
_:b1_n3-122 <http://www.w3.org/ns/shacl#path> <http://xmlns.com/foaf/0.1/page>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-123.
_:b1_n3-123 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/odrl/2/hasPolicy>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-124.
_:b1_n3-124 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#accessService>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-125.
_:b1_n3-125 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#compressFormat>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-126.
_:b1_n3-126 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#packageFormat>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-127.
_:b1_n3-127 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#temporalResolution>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#duration>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-128.
_:b1_n3-128 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#spatialResolutionInMeters>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#decimal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-129.
_:b1_n3-129 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#accessURL>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#BlankNodeOrIRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-130.
_:b1_n3-130 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/description>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-131.
_:b1_n3-131 <http://www.w3.org/ns/shacl#path> <http://data.europa.eu/r5ravailability>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-132.
_:b1_n3-132 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/format>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-133.
_:b1_n3-133 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/license>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Distribution_Shape> <http://www.w3.org/2000/01/rdf-schema#label> "Distribution"@en;
    <http://www.w3.org/ns/shacl#class> <http://www.w3.org/ns/dcat#Distribution>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#targetClass> <http://www.w3.org/ns/dcat#DataService>;
    <http://www.w3.org/ns/shacl#property> _:b1_n3-52.
_:b1_n3-52 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/title>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-53.
_:b1_n3-53 <http://www.w3.org/ns/shacl#path> <http://data.europa.eu/r5rapplicableLegislation>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#IRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-54.
_:b1_n3-54 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#endpointURL>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#BlankNodeOrIRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-55.
_:b1_n3-55 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#servesDataset>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-56.
_:b1_n3-56 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/description>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-57.
_:b1_n3-57 <http://www.w3.org/ns/shacl#path> <http://www.w3.org/ns/dcat#endpointDescription>;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#BlankNodeOrIRI>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-58.
_:b1_n3-58 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/license>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-59.
_:b1_n3-59 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/accessRights>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#DataService_Shape> <http://www.w3.org/2000/01/rdf-schema#label> "Data Service"@en;
    <http://www.w3.org/ns/shacl#class> <http://www.w3.org/ns/dcat#DataService>.
<http://data.europa.eu/r5r/shacl_shapes#Agent_Shape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#targetClass> <http://xmlns.com/foaf/0.1/Agent>;
    <http://www.w3.org/ns/shacl#property> _:b1_n3-18.
_:b1_n3-18 <http://www.w3.org/ns/shacl#path> <http://xmlns.com/foaf/0.1/name>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#Literal>;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Agent_Shape> <http://www.w3.org/ns/shacl#property> _:b1_n3-19.
_:b1_n3-19 <http://www.w3.org/ns/shacl#path> <http://purl.org/dc/terms/type>;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#severity> <http://www.w3.org/ns/shacl#Violation>.
<http://data.europa.eu/r5r/shacl_shapes#Agent_Shape> <http://www.w3.org/2000/01/rdf-schema#label> "Agent"@en;
    <http://www.w3.org/ns/shacl#class> <http://xmlns.com/foaf/0.1/Agent>.
<http://data.europa.eu/r5r/shacl_shapes#Kind_Shape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#targetClass> <http://www.w3.org/2006/vcard/ns#Kind>;
    <http://www.w3.org/2000/01/rdf-schema#label> "Kind"@en;
    <http://www.w3.org/2000/01/rdf-schema#comment> "Placeholder shape for vcard:Kind, currently not present in DCAT-AP v3 shapes";
    <http://www.w3.org/ns/shacl#class> <http://www.w3.org/2006/vcard/ns#Kind>.
<http://data.europa.eu/r5r/shacl_shapes#LicenseDocument_Shape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#targetClass> <http://purl.org/dc/terms/LicenseDocument>;
    <http://www.w3.org/2000/01/rdf-schema#label> "LicenseDocument"@en;
    <http://www.w3.org/2000/01/rdf-schema#comment> "Placeholder shape for dcterms:LicenseDocument, currently not present in DCAT-AP v3 shapes";
    <http://www.w3.org/ns/shacl#class> <http://purl.org/dc/terms/LicenseDocument>.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#PublishedPropertyShape> a <http://www.w3.org/ns/shacl#PropertyShape>;
    <http://www.w3.org/ns/shacl#path> <https://www.w3.org/ns/activitystreams#published>;
    <http://www.w3.org/ns/shacl#minCount> 0;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#datatype> <http://www.w3.org/2001/XMLSchema#dateTime>.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#DeleteShape> a <http://www.w3.org/ns/shacl#NodeShape>;
    <http://www.w3.org/ns/shacl#closed> true;
    <http://www.w3.org/ns/shacl#ignoredProperties> _:b1_n3-4.
_:b1_n3-4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>;
    <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
<https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#DeleteShape> <http://www.w3.org/ns/shacl#targetClass> <https://www.w3.org/ns/activitystreams#Delete>;
    <http://www.w3.org/ns/shacl#property> <https://semiceu.github.io/LDES-DCAT-AP-feeds/shape.ttl#PublishedPropertyShape>, _:b1_n3-5.
_:b1_n3-5 <http://www.w3.org/ns/shacl#path> <https://www.w3.org/ns/activitystreams#object>;
    <http://www.w3.org/ns/shacl#minCount> 1;
    <http://www.w3.org/ns/shacl#maxCount> 1;
    <http://www.w3.org/ns/shacl#nodeKind> <http://www.w3.org/ns/shacl#IRI>.