https://cacontology.projectvic.org/asset-forfeiture#FinancialAccountShape
Enhanced validation shape for financial accounts with gUFO Object validation and financial verification.
Instances of cacontology-asset-forfeiture:FinancialAccount can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-asset-forfeiture:FinancialAccount | ||||
| cacontology-asset-forfeiture:accountFunds | 0 | 1 |
xsd:decimal
|
|
| cacontology-asset-forfeiture:financialInstitution | 1 | 1 |
xsd:string
|
|
@prefix cacontology-asset-forfeiture: <https://cacontology.projectvic.org/asset-forfeiture#> .
@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-asset-forfeiture:FinancialAccountShape a sh:NodeShape ;
rdfs:label "Financial Account Shape"@en ;
rdfs:comment "Enhanced validation shape for financial accounts with gUFO Object validation and financial verification."@en ;
sh:property [ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:message "Account funds must be non-negative"@en ;
sh:minCount 0 ;
sh:minInclusive 0.0 ;
sh:path cacontology-asset-forfeiture:accountFunds ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:message "Financial account must specify institution"@en ;
sh:minCount 1 ;
sh:minLength 2 ;
sh:path cacontology-asset-forfeiture:financialInstitution ] ;
sh:targetClass cacontology-asset-forfeiture:FinancialAccount .