Ontology Version: 3.0.0

cac-core:hasConfidence leaf node


URI

https://cacontology.projectvic.org/core#hasConfidence

Label

has confidence

Description

A numeric confidence value associated with an assessment result, typically between 0 and 1.

Usage

DOMAINPROPERTYRANGE
cac-core:AssessmentResult cac-core:hasConfidence xsd:decimal

Implementation

@prefix cac-core: <https://cacontology.projectvic.org/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cac-core:hasConfidence a owl:DatatypeProperty ;
    rdfs:label "has confidence"@en ;
    rdfs:comment "A numeric confidence value associated with an assessment result, typically between 0 and 1."@en ;
    rdfs:domain cac-core:AssessmentResult ;
    rdfs:range xsd:decimal .