gr:hasInventoryLevel leaf node


URI

http://purl.org/goodrelations/v1#hasInventoryLevel

Label

has inventory level (0..1)

Description

This property specifies the current approximate inventory level for gr:SomeItems. The unit of measurement and the point value or interval are indicated using the attached gr:QuantitativeValueFloat instance.

This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:hasInventoryLevel gr:QuantitativeValueFloat

Implementation

@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

gr:hasInventoryLevel a owl:ObjectProperty ;
    rdfs:label "has inventory level (0..1)"@en ;
    rdfs:comment """This property specifies the current approximate inventory level for gr:SomeItems. The unit of measurement and the point value or interval are indicated using the attached gr:QuantitativeValueFloat instance.

This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:Offering gr:SomeItems <http://schema.org/Offer> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:QuantitativeValueFloat .