https://cacontology.projectvic.org/sex-offender-registry#DataQualityShape
Validates data quality for registry entities.
Instances of cacontology-registry:RegistrationRecord can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-registry:RegistrationRecord | ||||
| cacontology-registry:expirationDate | 0 | 1 |
xsd:date
|
|
| cacontology-registry:lifetimeRegistration | 1 | 1 |
xsd:boolean
|
|
| cacontology-registry:registrationDate | 1 | 1 |
xsd:date
|
|
| cacontology-registry:registrationNumber | 1 | 1 |
xsd:string
|
|
| cacontology-registry:tier | 1 | 1 |
xsd:integer
|
|
@prefix cacontology-registry: <https://cacontology.projectvic.org/sex-offender-registry#> .
@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-registry:DataQualityShape a sh:NodeShape ;
rdfs:label "Data Quality Shape"@en ;
rdfs:comment "Validates data quality for registry entities."@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:targetClass cacontology-registry:ConvictingOffense,
cacontology-registry:RegisteredSexOffender,
cacontology-registry:RegistrationRecord .