Ontology Version: 2.2.0

cacontology-legal-shapes:NationalLegislationShape leaf node


URI

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

Label

National Legislation Shape

Description

Enhanced shape for national legislation with implementation quality and effectiveness assessments. - Legal system type classification. - Implementation status must be specified. - National legislation must apply to exactly one country.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-legal:NationalLegislation
cacontology-legal:appliesToCountry 1 1 uco-location:Location
cacontology-legal:hasImplementationQuality 1 xsd:string
cacontology-legal:hasLegalEffectiveness 1 xsd:string
cacontology-legal:hasLegalRobustness 1 xsd:string
cacontology-legal:implementationStatus 1 1 xsd:string
cacontology-legal:legalSystemType 1 xsd:string
1

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-location: <https://ontology.unifiedcyberontology.org/uco/location/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-legal-shapes:NationalLegislationShape a sh:NodeShape ;
    rdfs:label "National Legislation Shape"@en ;
    rdfs:comment "Enhanced shape for national legislation with implementation quality and effectiveness assessments."@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 ],
        [ sh:datatype xsd:string ;
            sh:in ( "poor" "fair" "good" "excellent" "exemplary" ) ;
            sh:maxCount 1 ;
            sh:message "Implementation quality should be assessed"@en ;
            sh:path cacontology-legal:hasImplementationQuality ;
            sh:severity sh:Warning ],
        [ sh:datatype xsd:string ;
            sh:in ( "ineffective" "limited" "moderate" "effective" "highly_effective" ) ;
            sh:maxCount 1 ;
            sh:message "Legal effectiveness should be assessed"@en ;
            sh:path cacontology-legal:hasLegalEffectiveness ;
            sh:severity sh:Warning ],
        [ sh:datatype xsd:string ;
            sh:in ( "weak" "moderate" "strong" "very_strong" "comprehensive" ) ;
            sh:maxCount 1 ;
            sh:message "Legal robustness should be assessed"@en ;
            sh:path cacontology-legal:hasLegalRobustness ;
            sh:severity sh:Info ],
        [ rdfs:comment "Implementation status must be specified."@en ;
            sh:datatype xsd:string ;
            sh:in ( "drafted" "enacted" "enforced" ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path cacontology-legal:implementationStatus ],
        [ rdfs:comment "Legal system type classification."@en ;
            sh:datatype xsd:string ;
            sh:in ( "common_law" "civil_law" "religious_law" "mixed" ) ;
            sh:maxCount 1 ;
            sh:path cacontology-legal:legalSystemType ],
        [ rdfs:comment "National legislation must apply to exactly one country."@en ;
            sh:class uco-location:Location ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path cacontology-legal:appliesToCountry ] ;
    sh:targetClass cacontology-legal:NationalLegislation .