satisfies leaf node


URI

http://semanticscience.org/resource/satisfies

Label

satisfies

Description

satisfies is a relation between an entity and the specification or objective that it conforms to.

Usage

DOMAINPROPERTYRANGE
entity satisfies description

Implementation

@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sio: <http://semanticscience.org/resource/> .

sio:satisfies a owl:ObjectProperty ;
    rdfs:label "satisfies"@en ;
    dct:description "satisfies is a relation between an entity and the specification or objective that it conforms to."@en ;
    rdfs:domain sio:Entity ;
    rdfs:isDefinedBy <http://semanticscience.org/ontology/sio/v1.53/sio-subset-labels.owl> ;
    rdfs:range sio:Description ;
    rdfs:subPropertyOf sio:hasAttribute ;
    owl:inverseOf sio:isSatisfiedBy .