https://cacontology.projectvic.org/ai-generated#GUFODataQualityShape
Enhanced data quality validation for AI-related gUFO entities with foundational ontology compliance.
Instances of cacontology-ai:AIDetectionTool can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-ai:AIDetectionTool | ||||
| cacontology-ai:falsePositiveRate | 0 | 1 |
xsd:decimal
|
|
| 1 | 1 |
xsd:string
|
||
| 0 | 1 |
xsd:string
|
||
@prefix cacontology-ai: <https://cacontology.projectvic.org/ai-generated#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-ai:GUFODataQualityShape a sh:NodeShape ;
rdfs:label "gUFO Data Quality Shape"@en ;
rdfs:comment "Enhanced data quality validation for AI-related gUFO entities with foundational ontology compliance."@en ;
sh:rule [ a sh:SPARQLRule ;
sh:construct """
INSERT { $this a cacontology-ai:FoundationalTypeError . }
WHERE {
$this a ?aiType .
?aiType rdfs:subClassOf* cacontology-ai:AIGeneratedCSAM .
FILTER NOT EXISTS {
$this a ?gufoType .
?gufoType rdfs:subClassOf* gufo:Object .
}
}
""" ;
sh:message "AI entities must be properly typed as gUFO foundational entities"@en ;
sh:prefixes cacontology-ai: ;
sh:severity sh:Violation ] ;
sh:targetClass cacontology-ai:AICSAMInvestigation,
cacontology-ai:AIContentDetection,
cacontology-ai:AIContentGeneration,
cacontology-ai:AIDetectionTool,
cacontology-ai:AIGeneratedCSAM .