has unit leaf node


URI

http://semanticscience.org/resource/hasUnit

Label

has unit

Description

has unit is a relation between a quantity and the unit it is a multiple of.

Usage

DOMAINPROPERTYRANGE
mathematical entity has unit unit of measurement

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:hasUnit a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "has unit"@en ;
    dct:description "has unit is a relation between a quantity and the unit it is a multiple of."@en ;
    sio:subset "core" ;
    rdfs:domain sio:MathematicalEntity ;
    rdfs:isDefinedBy <http://semanticscience.org/ontology/sio/v1.53/sio-subset-labels.owl> ;
    rdfs:range sio:UnitOfMeasurement ;
    rdfs:subPropertyOf sio:hasAttribute ;
    owl:inverseOf sio:isUnitOf .