@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <http://w3id.org/CEON/ontology/plan/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix metadata_def: <http://data.bioontology.org/metadata/def/> . ns0:Description metadata_def:mappingLoom "description" ; metadata_def:mappingSameURI ns0:Description ; metadata_def:prefLabel "Description" ; a owl:Class ; rdfs:comment """A Description is a SocialObject that represents a conceptualization. For example, a Plan is a Description of some actions to be executed by agents in a certain way, with certain parameters etc. Descriptions 'define' or 'use' concepts, and can be 'satisfied' by situations.""" ; rdfs:label "Description" ; rdfs:subClassOf owl:Thing . ns0:Plan rdfs:subClassOf ns0:Description . ns0:satisfiesPlan rdfs:range ns0:Description .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://w3id.org/CEON/ontology/plan/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix metadata_def: <http://data.bioontology.org/metadata/def/> .

ns0:Description
    metadata_def:mappingLoom "description" ;
    metadata_def:mappingSameURI ns0:Description ;
    metadata_def:prefLabel "Description" ;
    a owl:Class ;
    rdfs:comment """A Description is a SocialObject that represents a conceptualization. 
For example, a Plan is a Description of some actions to be executed by agents in a certain way, with certain parameters etc. Descriptions 'define' or 'use' concepts, and can be 'satisfied' by situations.""" ;
    rdfs:label "Description" ;
    rdfs:subClassOf owl:Thing .

ns0:Plan
    rdfs:subClassOf ns0:Description .

ns0:satisfiesPlan
    rdfs:range ns0:Description .