https://cacontology.projectvic.org/synthesis/shapes#RecommendationNumberShape
Instances of cacontology-synthesis:Recommendation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-synthesis:Recommendation | ||||
| cacontology-synthesis:recommendationNumber | 1 | 1 |
xsd:integer
|
|
| cacontology-synthesis:supportedByEvidencePointer | 1 |
cacontology-synthesis:TextEvidencePointer
|
||
| cacontology-synthesis:Claim | ||||
| cacontology-synthesis:about | ||||
| cacontology-synthesis:inReport | 1 | 1 |
cacontology-synthesis:Report
|
|
| cacontology-synthesis:supportedByEvidencePointer | 1 |
cacontology-synthesis:TextEvidencePointer
|
||
@prefix cacontology-synthesis: <https://cacontology.projectvic.org/synthesis#> .
@prefix cacontology-synthesis-shapes: <https://cacontology.projectvic.org/synthesis/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-synthesis-shapes:RecommendationNumberShape a sh:NodeShape ;
rdfs:label "Recommendation Number Shape"@en ;
sh:property [ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:message "Recommendation must have exactly one recommendationNumber (positive integer)."@en ;
sh:minCount 1 ;
sh:minInclusive 1 ;
sh:path cacontology-synthesis:recommendationNumber ;
sh:severity sh:Violation ] ;
sh:targetClass cacontology-synthesis:Recommendation .