is greater than or equal to


URI

http://semanticscience.org/resource/isGreaterThanOrEqualTo

Label

is greater than or equal to

Description

is greater than or equal to is a comparison relation between two quantities in which the first has a value larger or equal to the second.

Sub Property

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) is greater than or equal to owl:Thing (inferred)

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:isGreaterThanOrEqualTo a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "is greater than or equal to"@en ;
    dct:description "is greater than or equal to is a comparison relation between two quantities in which the first has a value larger or equal to the second."@en ;
    rdfs:isDefinedBy <http://semanticscience.org/ontology/sio/v1.53/sio-subset-labels.owl> ;
    rdfs:subPropertyOf sio:isNumericallyComparableTo ;
    owl:inverseOf sio:isLesserThanOrEqualTo .