Ontology Version: 2.2.0

cacontology-institutional:ForeignCommerceOffenseShape leaf node


URI

https://cacontology.projectvic.org/institutional-exploitation#ForeignCommerceOffenseShape

Label

Foreign Commerce Offense Shape

Description

Validation shape for foreign commerce offenses with gUFO integration.

Shape Properties

Instances of cacontology-institutional:ForeignCommerceOffense can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-institutional:ForeignCommerceOffense
cacontology-institutional:chargeCount 1 1 xsd:nonNegativeInteger

Implementation

@prefix cacontology-institutional: <https://cacontology.projectvic.org/institutional-exploitation#> .
@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-institutional:ForeignCommerceOffenseShape a sh:NodeShape ;
    rdfs:label "Foreign Commerce Offense Shape"@en ;
    rdfs:comment "Validation shape for foreign commerce offenses with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 100 ;
            sh:message "Foreign commerce offense must specify charge count (1-100)."@en ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:path cacontology-institutional:chargeCount ] ;
    sh:targetClass cacontology-institutional:ForeignCommerceOffense .