Ontology Version: 2.2.0

cacontology-international:USAustraliaCoordinationShape leaf node


URI

https://cacontology.projectvic.org/international#USAustraliaCoordinationShape

Label

US-Australia Coordination Shape

Description

Validation shape for US-Australia coordination instances.

Shape Properties

Instances of cacontology-international:USAustraliaCoordination can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-international:USAustraliaCoordination
cacontology-international:operationContext 0 1 xsd:string

Implementation

@prefix cacontology-international: <https://cacontology.projectvic.org/international#> .
@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-international:USAustraliaCoordinationShape a sh:NodeShape ;
    rdfs:label "US-Australia Coordination Shape"@en ;
    rdfs:comment "Validation shape for US-Australia coordination instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "undercover_investigation" "direct_referral" "joint_operation" "intelligence_sharing" ) ;
            sh:maxCount 1 ;
            sh:message "Operation context must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-international:operationContext ] ;
    sh:targetClass cacontology-international:USAustraliaCoordination .