Ontology Version: 2.2.0

cacontology-legal-shapes:GlobalLegalReviewShape leaf node


URI

https://cacontology.projectvic.org/legal-harmonization/shapes#GlobalLegalReviewShape

Label

Global Legal Review Shape

Description

Enhanced validation shape for global legal reviews with gUFO integration. - Number of countries analyzed (1-196). - Review name must include 'Global', 'Review', and year.

Shape Properties

Instances of cacontology-legal:GlobalLegalReview can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-legal:GlobalLegalReview
cacontology-legal:countriesAnalyzed 1 1 xsd:nonNegativeInteger
cacontology-legal:hasDataQuality 1 xsd:string
1
1 1 xsd:string

Implementation

@prefix cacontology-legal: <https://cacontology.projectvic.org/legal-harmonization#> .
@prefix cacontology-legal-shapes: <https://cacontology.projectvic.org/legal-harmonization/shapes#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-legal-shapes:GlobalLegalReviewShape a sh:NodeShape ;
    rdfs:label "Global Legal Review Shape"@en ;
    rdfs:comment "Enhanced validation shape for global legal reviews with gUFO integration."@en ;
    sh:property [ sh:hasValue gufo:Kind ;
            sh:message "Must be classified as gUFO Kind"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ;
            sh:severity sh:Violation ],
        [ rdfs:comment "Number of countries analyzed (1-196)."@en ;
            sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 196 ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:path cacontology-legal:countriesAnalyzed ],
        [ rdfs:comment "Review name must include 'Global', 'Review', and year."@en ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path uco-core:name ;
            sh:pattern "^Global.*Review.*[0-9]{4}$" ] ;
    sh:targetClass cacontology-legal:GlobalLegalReview .