Ontology Version: 2.2.0

cacontology-coord:DataQualityShape leaf node


URI

https://cacontology.projectvic.org/investigation-coordination#DataQualityShape

Label

Data Quality Shape

Description

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

Shape Properties

Instances of cacontology-coord:InformationSharing can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-coord:InformationSharing
cacontology-coord:classificationLevel 1 1 xsd:string
cacontology-coord:hasDataCompleteness 1 xsd:double
cacontology-coord:hasDataConsistency 1 xsd:double
cacontology-coord:hasDataQuality 1 xsd:string
cacontology-coord:hasSecurityLevel 1 xsd:string
cacontology-coord:hasSharingEfficiency 1 xsd:string
cacontology-coord:hasTimeliness 1 xsd:double
cacontology-coord:hasValidationLevel 1 xsd:string
cacontology-coord:reciprocity 1 1 xsd:boolean
cacontology-coord:sharingAgreement 1 1 xsd:boolean
cacontology-coord:sharingMechanism 1 1 xsd:string
cacontology-coord:sharingType 1 1 xsd:string
1 xsd:dateTime
1 xsd:dateTime
0 1 xsd:string
0 1 xsd:string
0 1 xsd:dateTime
0 1 xsd:dateTime

Implementation

@prefix cacontology-coord: <https://cacontology.projectvic.org/investigation-coordination#> .
@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-coord:DataQualityShape a sh:NodeShape ;
    rdfs:label "Data Quality Shape"@en ;
    rdfs:comment "Validates data quality for investigation coordination entities with gUFO quality aspects."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 200 ;
            sh:message "Label should be between 5 and 200 characters when provided."@en ;
            sh:minCount 0 ;
            sh:minLength 5 ;
            sh:path rdfs:label ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 1000 ;
            sh:message "Comment should be between 10 and 1000 characters when provided."@en ;
            sh:minCount 0 ;
            sh:minLength 10 ;
            sh:path rdfs:comment ],
        [ 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:dateTime ;
            sh:maxCount 1 ;
            sh:message "Entity may have temporal ending (gUFO temporal boundary)"@en ;
            sh:path gufo:hasEndPointInXSDDateTimeStamp ],
        [ 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-coord:hasDataQuality ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Data completeness must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:hasDataCompleteness ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Data consistency must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:hasDataConsistency ],
        [ sh:datatype xsd:string ;
            sh:in ( "none" "basic" "standard" "comprehensive" "full_verification" ) ;
            sh:maxCount 1 ;
            sh:message "Validation level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-coord:hasValidationLevel ] ;
    sh:targetClass cacontology-coord:CoordinationAgreement,
        cacontology-coord:InformationSharing,
        cacontology-coord:InvestigationCoordination,
        cacontology-coord:LiaisonOfficer,
        cacontology-coord:ResourceSharing .