derives into


URI

http://semanticscience.org/resource/derivesInto

Label

derives into

Description

a derives to b if and only if a or some part thereof is consumed in the formation of b.

Usage

DOMAINPROPERTYRANGE
object derives into object

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:derivesInto a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "derives into"@en ;
    dct:description "a derives to b if and only if a or some part thereof is consumed in the formation of b."@en ;
    rdfs:domain sio:Object ;
    rdfs:isDefinedBy <http://semanticscience.org/ontology/sio/v1.53/sio-subset-labels.owl> ;
    rdfs:range sio:Object ;
    rdfs:subPropertyOf sio:isCausallyRelatedTo .