Ontology Version: 2.2.0

cacontology-legal-shapes:TreatyFrameworkShape leaf node


URI

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

Label

Treaty Framework Shape

Description

Enhanced shape for international treaty frameworks with strength assessment. - Treaty must facilitate international cooperation. - Treaty framework must have comprehensive name. - Multilateral treaty must apply to at least three countries.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-legal:TreatyFramework
cacontology-legal:appliesToCountry 3 uco-location:Location
cacontology-legal:facilitatesCooperation 1 cacontology-legal:InternationalLawEnforcement
cacontology-legal:hasTreatyStrength 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 uco-location: <https://ontology.unifiedcyberontology.org/uco/location/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-legal-shapes:TreatyFrameworkShape a sh:NodeShape ;
    rdfs:label "Treaty Framework Shape"@en ;
    rdfs:comment "Enhanced shape for international treaty frameworks with strength assessment."@en ;
    sh:property [ rdfs:comment "Treaty framework must have comprehensive name."@en ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 300 ;
            sh:minCount 1 ;
            sh:minLength 15 ;
            sh:path uco-core:name ],
        [ rdfs:comment "Treaty must facilitate international cooperation."@en ;
            sh:class cacontology-legal:InternationalLawEnforcement ;
            sh:minCount 1 ;
            sh:path cacontology-legal:facilitatesCooperation ],
        [ rdfs:comment "Multilateral treaty must apply to at least three countries."@en ;
            sh:class uco-location:Location ;
            sh:minCount 3 ;
            sh:path cacontology-legal:appliesToCountry ],
        [ sh:hasValue gufo:Kind ;
            sh:message "Must be classified as gUFO Kind"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ;
            sh:severity sh:Violation ],
        [ sh:datatype xsd:string ;
            sh:in ( "weak" "moderate" "strong" "binding" "comprehensive" ) ;
            sh:maxCount 1 ;
            sh:message "Treaty strength should be assessed"@en ;
            sh:path cacontology-legal:hasTreatyStrength ;
            sh:severity sh:Warning ] ;
    sh:targetClass cacontology-legal:TreatyFramework .