https://cacontology.projectvic.org/abduction#AbductionCrossReferenceShape
Validates cross-references between abduction and related entities.
Instances of cacontology-stranger:StrangerAbduction can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-stranger:StrangerAbduction | ||||
| cacontology-stranger:abductionLocation | 1 | 1 |
xsd:string
|
|
| 1 | 1 |
xsd:dateTime
|
||
| 1 | 1 |
xsd:string
|
||
| 1 | 1 |
xsd:dateTime
|
||
| 0 | 1 |
xsd:decimal
|
||
| 1 | 1 |
xsd:string
|
||
| 1 | 1 |
xsd:nonNegativeInteger
|
||
@prefix cacontology-stranger: <https://cacontology.projectvic.org/abduction#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-stranger:AbductionCrossReferenceShape a sh:NodeShape ;
rdfs:label "Abduction Cross Reference Shape"@en ;
rdfs:comment "Validates cross-references between abduction and related entities."@en ;
sh:sparql [ sh:message "Stranger abduction must involve abductor and use method."@en ;
sh:select """
SELECT $this
WHERE {
$this a cacontology-stranger:StrangerAbduction .
FILTER NOT EXISTS {
$this cacontology-stranger:involvesAbductor ?abductor ;
cacontology-stranger:usesMethod ?method .
}
}
""" ] ;
sh:targetClass cacontology-stranger:StrangerAbduction .