Ontology Version: 2.3.0

cacontology-tactical:ArrestReportShape leaf node


URI

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

Label

Arrest Report Shape

Description

Validation shape for arrest report provenance records.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

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:ArrestReportShape a sh:NodeShape ;
    rdfs:label "Arrest Report Shape"@en ;
    rdfs:comment "Validation shape for arrest report provenance records."@en ;
    sh:property [ sh:datatype rdf:langString ;
            sh:maxCount 1 ;
            sh:message "Arrest report should have a label."@en ;
            sh:minCount 0 ;
            sh:path rdfs:label ],
        [ sh:datatype xsd:date ;
            sh:maxCount 1 ;
            sh:message "May specify the report date."@en ;
            sh:minCount 0 ;
            sh:path cacontology-tactical:reportDate ],
        [ sh:class cacontology-tactical:ArrestOperation ;
            sh:maxCount 1 ;
            sh:message "May link to the arrest operation documented."@en ;
            sh:minCount 0 ;
            sh:path cacontology-tactical:documentsArrest ] ;
    sh:targetClass cacontology-tactical:ArrestReport .