https://cacontology.projectvic.org/investigation-coordination#PersonnelSharingShape
Validation shape for personnel sharing instances.
Instances of cacontology-coord:PersonnelSharing can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-coord:PersonnelSharing | ||||
| cacontology-coord:personnelCount | 1 | 1 |
xsd:nonNegativeInteger
|
|
| cacontology-coord:securityClearance | 0 | 1 |
xsd:string
|
|
| cacontology-coord:specialization | 1 | 1 |
xsd:string
|
|
| cacontology-coord:ResourceSharing | ||||
| cacontology-coord:availabilityLevel | 1 | 1 |
xsd:string
|
|
| cacontology-coord:costSharing | 1 | 1 |
xsd:boolean
|
|
| cacontology-coord:hasDataCompleteness | 1 |
xsd:double
|
||
| cacontology-coord:hasDataConsistency | 1 |
xsd:double
|
||
| cacontology-coord:hasDataQuality | 1 |
xsd:string
|
||
| cacontology-coord:hasValidationLevel | 1 |
xsd:string
|
||
| cacontology-coord:reimbursement | 1 | 1 |
xsd:boolean
|
|
| cacontology-coord:resourceType | 1 | 1 |
xsd:string
|
|
| cacontology-coord:sharingDuration | 1 | 1 |
xsd:decimal
|
|
| 1 |
xsd:dateTime
|
|||
| 1 |
xsd:dateTime
|
|||
| 0 | 1 |
xsd:string
|
||
| 0 | 1 |
xsd:string
|
||
| 0 | 1 |
xsd:dateTime
|
||
| 0 | 1 |
xsd:dateTime
|
||
@prefix cacontology-coord: <https://cacontology.projectvic.org/investigation-coordination#> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-coord:PersonnelSharingShape a sh:NodeShape ;
rdfs:label "Personnel Sharing Shape"@en ;
rdfs:comment "Validation shape for personnel sharing instances."@en ;
sh:property [ sh:datatype xsd:nonNegativeInteger ;
sh:maxCount 1 ;
sh:maxInclusive 100 ;
sh:message "Personnel sharing must specify personnel count between 1 and 100."@en ;
sh:minCount 1 ;
sh:minInclusive 1 ;
sh:path cacontology-coord:personnelCount ],
[ sh:datatype xsd:string ;
sh:in ( "digital_forensics" "undercover_operations" "surveillance" "analysis" "technical_support" "legal_expertise" ) ;
sh:maxCount 1 ;
sh:message "Personnel sharing must specify specialization from the allowed list."@en ;
sh:minCount 1 ;
sh:path cacontology-coord:specialization ],
[ sh:datatype xsd:string ;
sh:in ( "none" "public_trust" "confidential" "secret" "top_secret" "sci_access" ) ;
sh:maxCount 1 ;
sh:message "Security clearance must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-coord:securityClearance ] ;
sh:targetClass cacontology-coord:PersonnelSharing .