https://cacontology.projectvic.org/infrastructure#DataQualityShape
Validates data quality for infrastructure entities.
Instances of cacontology-infrastructure:InfrastructureTakedown can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-infrastructure:InfrastructureTakedown | ||||
| cacontology-infrastructure:hasTakedownCompleteness | 1 |
xsd:double
|
||
| cacontology-infrastructure:hasTakedownEffectiveness | 1 |
xsd:double
|
||
| cacontology-infrastructure:hasTakedownSpeed | 1 |
xsd:string
|
||
| cacontology-infrastructure:takedownDuration | 0 | 1 |
xsd:decimal
|
|
| 0 | 1 |
xsd:dateTime
|
||
| 1 | 1 |
xsd:dateTime
|
||
@prefix cacontology-infrastructure: <https://cacontology.projectvic.org/infrastructure#> .
@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-infrastructure:DataQualityShape a sh:NodeShape ;
rdfs:label "Data Quality Shape"@en ;
rdfs:comment "Validates data quality for infrastructure 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-infrastructure:HostingProvider,
cacontology-infrastructure:InfrastructureAnalysis,
cacontology-infrastructure:InfrastructureTakedown,
cacontology-infrastructure:PaymentProcessing,
cacontology-infrastructure:PlatformInfrastructure .