https://cacontology.projectvic.org/sextortion#FinancialSextortionShape
Validation shape for financial sextortion instances.
@prefix cacontology-sextortion: <https://cacontology.projectvic.org/sextortion#> .
@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-sextortion:FinancialSextortionShape a sh:NodeShape ;
rdfs:label "Financial Sextortion Shape"@en ;
rdfs:comment "Validation shape for financial sextortion instances."@en ;
sh:property [ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 100000.0 ;
sh:message "Demand amount must be between $1 and $100,000."@en ;
sh:minCount 0 ;
sh:minInclusive 1.0 ;
sh:path cacontology-sextortion:demandAmount ],
[ sh:datatype xsd:string ;
sh:in ( "gift_cards" "cryptocurrency" "wire_transfer" "cash_app" "venmo" "paypal" "bank_transfer" "prepaid_cards" ) ;
sh:maxCount 1 ;
sh:message "Payment method must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-sextortion:paymentMethod ],
[ sh:datatype xsd:string ;
sh:in ( "one_time" "weekly" "monthly" "irregular" "escalating" "continuous" ) ;
sh:maxCount 1 ;
sh:message "Payment frequency must be from the allowed list."@en ;
sh:minCount 0 ;
sh:path cacontology-sextortion:paymentFrequency ] ;
sh:targetClass cacontology-sextortion:FinancialSextortion .