Ontology Version: 2.2.0

cacontology-international:DataQualityShape leaf node


URI

https://cacontology.projectvic.org/international#DataQualityShape

Label

Data Quality Shape

Description

Validates data quality for international coordination entities with gUFO quality aspects.

Shape Properties

Instances of cacontology-international:InformationSharingAgreement can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-international:InformationSharingAgreement
1 xsd:string
1 xsd:double
cacontology-international:informationSharingLevel 0 1 xsd:string
cacontology-international:multilateralAgreement 0 1 xsd:boolean
cacontology-international:sharesDataWith 2 uco-identity:Organization
1 xsd:dateTime
1 xsd:dateTime
1 1 xsd:string

Implementation

@prefix cacontology-international: <https://cacontology.projectvic.org/international#> .
@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-international:DataQualityShape a sh:NodeShape ;
    rdfs:label "Data Quality Shape"@en ;
    rdfs:comment "Validates data quality for international coordination entities with gUFO quality aspects."@en ;
    sh:property [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Creation time should be specified when available."@en ;
            sh:minCount 0 ;
            sh:path uco-core:createdTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Modification time should be specified when available."@en ;
            sh:minCount 0 ;
            sh:path uco-core:modifiedTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Entity may have temporal beginning (gUFO temporal boundary)"@en ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:string ;
            sh:in ( "poor" "fair" "good" "excellent" "validated" ) ;
            sh:maxCount 1 ;
            sh:message "Data quality level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-international:hasDataQuality ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Reliability score must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-international:hasReliabilityScore ] ;
    sh:targetClass cacontology-international:CrossBorderOperation,
        cacontology-international:GlobalHotlineNetwork,
        cacontology-international:InformationSharingAgreement,
        cacontology-international:InternationalPartnership,
        cacontology-international:MutualLegalAssistance .