Ontology Version: 2.3.0

cacontology-tactical:ImmigrationHoldShape leaf node


URI

https://cacontology.projectvic.org/tactical#ImmigrationHoldShape

Label

Immigration Hold Shape

Description

Validation shape for immigration holds on arrested suspects.

Shape Properties

Instances of cacontology-tactical:ImmigrationHold can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-tactical:ImmigrationHold
0 1 xsd:string
cacontology-tactical:immigrationStatus 0 1 xsd:string
0 1 rdf:langString

Implementation

@prefix cacontology-tactical: <https://cacontology.projectvic.org/tactical#> .
@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-tactical:ImmigrationHoldShape a sh:NodeShape ;
    rdfs:label "Immigration Hold Shape"@en ;
    rdfs:comment "Validation shape for immigration holds on arrested suspects."@en ;
    sh:property [ sh:datatype rdf:langString ;
            sh:maxCount 1 ;
            sh:message "Immigration hold should have a label."@en ;
            sh:minCount 0 ;
            sh:path rdfs:label ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "May specify the immigration status."@en ;
            sh:minCount 0 ;
            sh:path cacontology-tactical:immigrationStatus ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "May specify the reason for immigration hold."@en ;
            sh:minCount 0 ;
            sh:path cacontology-tactical:immigrationHoldReason ] ;
    sh:targetClass cacontology-tactical:ImmigrationHold .