https://cacontology.projectvic.org/infrastructure/shapes#EnhancedTakedownShape
Enhanced validation shape for takedown operations with gUFO quality aspects.
Instances of cacontology-infrastructure:InfrastructureTakedown can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-infrastructure:InfrastructureTakedown | ||||
| cacontology-infrastructure:hasTakedownCompleteness | 1 |
xsd:double
|
||
| cacontology-infrastructure:hasTakedownEffectiveness | 1 |
xsd:double
|
||
| cacontology-infrastructure:hasTakedownSpeed | 1 |
xsd:string
|
||
| cacontology-infrastructure:takedownDuration | 0 | 1 |
xsd:decimal
|
|
| 0 | 1 |
xsd:dateTime
|
||
| 1 | 1 |
xsd:dateTime
|
||
@prefix cacontology-infrastructure: <https://cacontology.projectvic.org/infrastructure#> .
@prefix cacontology-infrastructure-shapes: <https://cacontology.projectvic.org/infrastructure/shapes#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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-infrastructure-shapes:EnhancedTakedownShape a sh:NodeShape ;
rdfs:label "Enhanced Takedown Shape"@en ;
rdfs:comment "Enhanced validation shape for takedown operations with gUFO quality aspects."@en ;
sh:property [ sh:datatype xsd:double ;
sh:maxCount 1 ;
sh:maxInclusive 1.0 ;
sh:message "Takedown effectiveness must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
sh:minInclusive 0.0 ;
sh:path cacontology-infrastructure:hasTakedownEffectiveness ],
[ sh:datatype xsd:double ;
sh:maxCount 1 ;
sh:maxInclusive 1.0 ;
sh:message "Takedown completeness must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
sh:minInclusive 0.0 ;
sh:path cacontology-infrastructure:hasTakedownCompleteness ],
[ sh:datatype xsd:string ;
sh:in ( "slow" "moderate" "fast" "rapid" "instantaneous" ) ;
sh:maxCount 1 ;
sh:message "Takedown speed must be from allowed values (gUFO quality aspect)."@en ;
sh:path cacontology-infrastructure:hasTakedownSpeed ] ;
sh:targetClass cacontology-infrastructure:InfrastructureTakedown .