Ontology Version: 3.0.0

cacontology-asset-forfeiture:ResidentialPropertyShape leaf node


URI

https://cacontology.projectvic.org/asset-forfeiture#ResidentialPropertyShape

Label

Residential Property Shape

Description

Enhanced validation shape for residential property with gUFO Object validation and property assessment.

Shape Properties

Instances of cacontology-asset-forfeiture:ResidentialProperty can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-asset-forfeiture:ResidentialProperty
cacontology-asset-forfeiture:marketValue 0 1 xsd:decimal
1 uco-identity:Person

Implementation

@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 uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix uco-observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-asset-forfeiture:ResidentialPropertyShape a sh:NodeShape ;
    rdfs:label "Residential Property Shape"@en ;
    rdfs:comment "Enhanced validation shape for residential property with gUFO Object validation and property assessment."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:message "Market value must be positive"@en ;
            sh:minCount 0 ;
            sh:minExclusive 0.0 ;
            sh:path cacontology-asset-forfeiture:marketValue ],
        [ sh:class uco-identity:Person ;
            sh:message "Residential property must have at least one owner"@en ;
            sh:minCount 1 ;
            sh:path uco-observable:propertyOwner ] ;
    sh:targetClass cacontology-asset-forfeiture:ResidentialProperty .