dol:abstract-quality leaf node


URI

http://www.loa-cnr.it/ontologies/DOLCE-Lite#abstract-quality

Label

abstract-quality

Description

A quality inherent in a non-physical endurant.

Usage

Instances of dol:abstract-quality can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class dol:quality
dol:has-quale owl:ObjectProperty A quality having a q-location at an atomic region. dol:quale
dol:inherent-in owl:ObjectProperty The immediate relation holding for qualities and entities. dol:particular
dol:q-location owl:ObjectProperty The immediate relation holding for qualities and regions. See 'generic location' branching for the various mediated relations that embed q-location. dol:region
dol:t-inherent-in owl:ObjectProperty The immediate relation holding for qualities and entities at time t. dol:particular

Implementation

@prefix dol: <http://www.loa-cnr.it/ontologies/DOLCE-Lite#> .
@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#> .

dol:abstract-quality a owl:Class ;
    rdfs:comment "A quality inherent in a non-physical endurant."^^xsd:string ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:allValuesFrom dol:abstract-region ;
            owl:onProperty dol:q-location ],
        [ a owl:Restriction ;
            owl:allValuesFrom dol:abstract-quality ;
            owl:onProperty dol:has-quality ],
        [ a owl:Restriction ;
            owl:onProperty dol:inherent-in ;
            owl:someValuesFrom dol:non-physical-endurant ],
        dol:quality .