https://cacontology.projectvic.org/physical-evidence/shapes#PhysicalSearchShape
Enhanced validation shape for physical search instances with gUFO quality aspects.
@prefix cacontology-physical-shapes: <https://cacontology.projectvic.org/physical-evidence/shapes#> .
@prefix cacontology-physical1: <https://cacontology.projectvic.org/physical-evidence#> .
@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-physical-shapes:PhysicalSearchShape a sh:NodeShape ;
rdfs:label "Physical Search Shape"@en ;
rdfs:comment "Enhanced validation shape for physical search instances with gUFO quality aspects."@en ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:maxLength 500 ;
sh:message "Physical search must specify search scope (10-500 characters)."@en ;
sh:minCount 1 ;
sh:minLength 10 ;
sh:path cacontology-physical1:searchScope ],
[ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 72.0 ;
sh:message "Search duration must be between 0.25 and 72.0 hours."@en ;
sh:minCount 1 ;
sh:minInclusive 0.25 ;
sh:path cacontology-physical1:searchDuration ],
[ sh:datatype xsd:string ;
sh:in ( "superficial" "basic" "thorough" "comprehensive" "exhaustive" ) ;
sh:maxCount 1 ;
sh:message "Search thoroughness must be from allowed values (gUFO quality aspect)."@en ;
sh:path cacontology-physical1:hasSearchThoroughness ],
[ sh:datatype xsd:double ;
sh:maxCount 1 ;
sh:maxInclusive 1.0 ;
sh:message "Search efficiency must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
sh:minInclusive 0.0 ;
sh:path cacontology-physical1:hasSearchEfficiency ],
[ sh:datatype xsd:double ;
sh:maxCount 1 ;
sh:maxInclusive 1.0 ;
sh:message "Search completeness must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
sh:minInclusive 0.0 ;
sh:path cacontology-physical1:hasSearchCompleteness ] ;
sh:targetClass cacontology-physical1:PhysicalSearch .