https://cacontology.projectvic.org/physical/shapes#CriminalProcurementShape
Enhanced validation shape for criminal procurement instances with gUFO quality aspects.
Instances of cacontology-physical:CriminalProcurement can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-physical:CriminalProcurement | ||||
| cacontology-physical:hasAcquisitionRisk | 1 |
xsd:string
|
||
| cacontology-physical:hasProcurementSuspicion | 1 |
xsd:string
|
||
| cacontology-physical:hasTraceability | 1 |
xsd:double
|
||
| cacontology-physical:paymentMethod | 0 | 1 |
xsd:string
|
|
| cacontology-physical:procurementCost | 0 | 1 |
xsd:decimal
|
|
| cacontology-physical:procurementMethod | 1 | 1 |
xsd:string
|
|
@prefix cacontology-physical: <https://cacontology.projectvic.org/physical#> .
@prefix cacontology-physical-shapes: <https://cacontology.projectvic.org/physical/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-physical-shapes:CriminalProcurementShape a sh:NodeShape ;
rdfs:label "Criminal Procurement Shape"@en ;
rdfs:comment "Enhanced validation shape for criminal procurement instances with gUFO quality aspects."@en ;
sh:property [ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 1000000.0 ;
sh:message "Procurement cost must be between $0.00 and $1,000,000.00."@en ;
sh:minCount 0 ;
sh:minInclusive 0.0 ;
sh:path cacontology-physical:procurementCost ],
[ sh:datatype xsd:string ;
sh:in ( "credit_card" "cash" "digital_currency" "check" "money_order" "unknown" ) ;
sh:maxCount 1 ;
sh:message "Payment method must be from the allowed list when specified."@en ;
sh:minCount 0 ;
sh:path cacontology-physical:paymentMethod ],
[ sh:datatype xsd:string ;
sh:in ( "none" "low" "moderate" "high" "critical" ) ;
sh:maxCount 1 ;
sh:message "Procurement suspicion must be from allowed values (gUFO quality aspect)."@en ;
sh:path cacontology-physical:hasProcurementSuspicion ],
[ sh:datatype xsd:double ;
sh:maxCount 1 ;
sh:maxInclusive 1.0 ;
sh:message "Traceability must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
sh:minInclusive 0.0 ;
sh:path cacontology-physical:hasTraceability ],
[ sh:datatype xsd:string ;
sh:in ( "low" "moderate" "high" "extreme" "unknown" ) ;
sh:maxCount 1 ;
sh:message "Acquisition risk must be from allowed values (gUFO quality aspect)."@en ;
sh:path cacontology-physical:hasAcquisitionRisk ],
[ sh:datatype xsd:string ;
sh:in ( "online_purchase" "retail_store" "private_sale" "gift" "theft" "unknown" ) ;
sh:maxCount 1 ;
sh:message "Criminal procurement must specify procurement method from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-physical:procurementMethod ] ;
sh:targetClass cacontology-physical:CriminalProcurement .