Ontology Version: 2.2.0

cacontology-physical-shapes:CriminalProcurementShape leaf node


URI

https://cacontology.projectvic.org/physical-evidence/shapes#CriminalProcurementShape

Label

Criminal Procurement Shape

Description

Enhanced validation shape for criminal procurement instances with gUFO quality aspects.

Implementation

@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: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-physical1: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-physical1: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-physical1: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-physical1: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-physical1: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-physical1:procurementMethod ] ;
    sh:targetClass cacontology-physical1:CriminalProcurement .