https://www.w3id.org/rcao#derivedFrom
Links an awareness state to the source or previous state from which it was derived. Decoupled from PROV-O to prevent Entity coercion.
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| rcao:AwarenessState , Blank node (see implementation) | rcao:derivedFrom | owl:Thing (inferred) |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rcao: <https://www.w3id.org/rcao#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
rcao:derivedFrom a owl:ObjectProperty ;
rdfs:comment "Links an awareness state to the source or previous state from which it was derived. Decoupled from PROV-O to prevent Entity coercion." ;
rdfs:domain rcao:AwarenessState ;
rdfs:range [ a owl:Class ;
owl:unionOf ( rcao:InformationSource rcao:AwarenessState ) ] .