From b5655cc16f6c231fcef9c9346490010c1f1b7035 Mon Sep 17 00:00:00 2001 From: "Bilbao Arechabala, Sonia" <sonia.bilbao@tecnalia.com> Date: Tue, 30 Jul 2024 13:05:05 +0200 Subject: [PATCH] Upload New File --- .../pilot7/pilot7_service2_output.shacl.ttl | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 validation/pilot7/pilot7_service2_output.shacl.ttl diff --git a/validation/pilot7/pilot7_service2_output.shacl.ttl b/validation/pilot7/pilot7_service2_output.shacl.ttl new file mode 100644 index 0000000..2f5d048 --- /dev/null +++ b/validation/pilot7/pilot7_service2_output.shacl.ttl @@ -0,0 +1,70 @@ +@prefix brick: <https://brickschema.org/schema/1.1/Brick#> . +@prefix cdt: <http://w3id.org/lindt/custom_datatypes#> . +@prefix plt: <https://w3id.org/platoon/> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix seas: <https://w3id.org/seas/> . +@prefix time: <http://www.w3.org/2006/time#> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . +@prefix saref4bldg: <https://saref.etsi.org/saref4bldg/> . +@prefix ener-prop: <https://w3id.org/enershare/property/> . +@prefix ener-bldg: <https://w3id.org/enershare/building/> . +@prefix ener: <https://enershare.eu/shapes/p1#> . +@prefix sh: <http://www.w3.org/ns/shacl#> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . + + +ener:BuildingShape + a sh:NodeShape ; + sh:property [ + sh:path seas:hasProperty ; + sh:minCount 1 ; + sh:nodeKind sh:IRI ; + ] ; + sh:targetClass seas:Building . + + +ener:BuildingCountShape + a sh:NodeShape ; + sh:targetNode seas:Building ; + sh:property [ + sh:path [ sh:inversePath rdf:type ] ; + sh:minCount 1 ; + ] . + + +ener:PropertyShape + a sh:NodeShape ; + sh:property [ + sh:path rdfs:label ; + sh:minCount 1 ; + sh:maxCount 1 ; + sh:datatype xsd:string ; + ] ; + sh:property [ + sh:path rdfs:comment ; + sh:minCount 1 ; + sh:maxCount 1 ; + sh:datatype xsd:string ; + ] ; + sh:property [ + sh:path seas:evaluation ; + sh:minCount 1 ; + sh:nodeKind sh:IRI ; + ] ; + sh:targetClass seas:Property . + +ener:EvaluationShape + a sh:NodeShape ; + sh:property [ + sh:path rdfs:label ; + sh:minCount 1 ; + sh:maxCount 1 ; + sh:datatype xsd:string ; + ] ; + sh:property [ + sh:path seas:evaluatedSimpleValue ; + sh:minCount 1 ; + sh:maxCount 1 ; + ] ; + sh:targetClass seas:Evaluation . -- GitLab