https://cacontology.projectvic.org/infrastructure#FinancialFlowAnalysisShape
Validation shape for financial flow analysis instances.
Instances of cacontology-infrastructure:FinancialFlowAnalysis can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-infrastructure:FinancialFlowAnalysis | ||||
| cacontology-infrastructure:financialComplexity | 0 | 1 |
xsd:string
|
|
| 1 | 1 |
xsd:dateTime
|
||
| cacontology-infrastructure:InfrastructureAnalysis | ||||
| cacontology-infrastructure:hasAnalysisAccuracy | 1 |
xsd:double
|
||
| cacontology-infrastructure:hasAnalysisDepth | 1 |
xsd:string
|
||
| cacontology-infrastructure:hasAnalysisTimeliness | 1 |
xsd:string
|
||
@prefix cacontology-infrastructure: <https://cacontology.projectvic.org/infrastructure#> .
@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-infrastructure:FinancialFlowAnalysisShape a sh:NodeShape ;
rdfs:label "Financial Flow Analysis Shape"@en ;
rdfs:comment "Validation shape for financial flow analysis instances."@en ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Financial flow analysis must specify start time."@en ;
sh:minCount 1 ;
sh:path uco-core:startTime ],
[ sh:datatype xsd:string ;
sh:in ( "basic" "intermediate" "sophisticated" "highly_sophisticated" ) ;
sh:maxCount 1 ;
sh:message "Financial complexity must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-infrastructure:financialComplexity ] ;
sh:targetClass cacontology-infrastructure:FinancialFlowAnalysis .