dol:part


URI

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

Label

part

Description

The most generic part relation, reflexive, asymmetric, and transitive.

Inherits from

Usage

DOMAINPROPERTYRANGE
dol:particular dol:part 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:part a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:comment "The most generic part relation, reflexive, asymmetric, and transitive."^^xsd:string ;
    rdfs:domain dol:particular ;
    rdfs:range dol:particular ;
    rdfs:subPropertyOf dol:immediate-relation ;
    owl:inverseOf dol:part-of .