http://purl.org/goodrelations/v1#QuantitativeValueInteger
An instance of this class is an actual integer value for a quantitative property of a product. This instance is usually characterized by a minimal value, a maximal value, and a unit of measurement.
Example: A seating capacity between 1 and 8 persons.
Note: Users must keep in mind that ranges in here mean that ALL possible values in this interval are covered. (Sometimes, the actual commitment may be less than that: "We sell cars from 2 - 12 seats" does often not really mean that they have cars with 2,3,4,...12 seats.). Someone renting out two types of rowing boats, one that fits for 1 or 2 people, and another that must be operated by 4 people cannot claim to rent boats with a seating capacity between 1 and 4 people. He or she is offering two boat types for 1-2 and 4 persons.
Compatibility with schema.org: This class is a subclass of http://schema.org/Quantity.
Instances of gr:QuantitativeValueInteger can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class gr:QuantitativeValueInteger | |||
gr:hasMaxValueInteger | owl:DatatypeProperty | This property captures the upper limit of a gr:QuantitativeValueInteger instance. | xsd:int |
gr:hasMinValueInteger | owl:DatatypeProperty | This property captures the lower limit of a gr:QuantitativeValueInteger instance. | xsd:int |
gr:hasValueInteger | owl:DatatypeProperty | This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueInteger are identical and have the respective integer value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval. | xsd:int |
From class gr:QuantitativeValue | |||
gr:hasMaxValue | owl:DatatypeProperty | This property captures the upper limit of a gr:QuantitativeValue instance. | rdfs:Literal |
gr:hasMinValue | owl:DatatypeProperty | This property captures the lower limit of a gr:QuantitativeValue instance. | rdfs:Literal |
gr:hasValue | owl:DatatypeProperty | This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValue are identical and have the respective value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval. | rdfs:Literal |
From class owl:Thing | |||
dc:contributor | owl:AnnotationProperty | owl:Thing | |
dc:creator | owl:AnnotationProperty | owl:Thing | |
dc:rights | owl:AnnotationProperty | owl:Thing | |
dc:subject | owl:AnnotationProperty | owl:Thing | |
dc:title | owl:AnnotationProperty | owl:Thing | |
dcterms:license | owl:AnnotationProperty | owl:Thing | |
foaf:depiction | owl:ObjectProperty | owl:Thing | |
foaf:homepage | owl:AnnotationProperty | owl:Thing | |
gr:displayPosition | owl:AnnotationProperty | The position at which the option or element should be listed in a menu or user dialog, lower numbers come first. The main usage of this property are the days of the week (gr:DayOfWeek), but it is also possible to apply it e.g. to product features or any other conceptual element. Note: Rely on this property only for data originating from a single RDF graph; otherwise, unpredictable results are possible. | owl:Thing |
gr:relatedWebService | owl:AnnotationProperty | The URI of a SOAP or REST Web Service from which additional information about the gr:BusinessEntity, gr:Offering, gr:PriceSpecification, or gr:ProductOrService, or any other element, can be obtained. The recommended range is xsd:anyURI i.e., the URI of a SOAP or REST Web Service. In principle, any existing or upcoming vocabulary for Web Services can be used in combination with GoodRelations, because the association between (a) the service description and (b) the GoodRelations description can be found via the Web Service URI value used with this gr:relatedWebService property. | owl:Thing |
http://schema.org/description | owl:DatatypeProperty | owl:Thing | |
http://schema.org/image | owl:ObjectProperty | owl:Thing | |
http://schema.org/manufacturer | owl:ObjectProperty | owl:Thing | |
http://schema.org/name | owl:DatatypeProperty | owl:Thing | |
http://schema.org/productID | owl:DatatypeProperty | owl:Thing | |
owl:deprecated | owl:AnnotationProperty | owl:Thing |
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
gr:QuantitativeValueInteger a owl:Class ;
rdfs:label "Quantitative value integer"@en ;
rdfs:comment """An instance of this class is an actual integer value for a quantitative property of a product. This instance is usually characterized by a minimal value, a maximal value, and a unit of measurement.
Example: A seating capacity between 1 and 8 persons.
Note: Users must keep in mind that ranges in here mean that ALL possible values in this interval are covered. (Sometimes, the actual commitment may be less than that: "We sell cars from 2 - 12 seats" does often not really mean that they have cars with 2,3,4,...12 seats.). Someone renting out two types of rowing boats, one that fits for 1 or 2 people, and another that must be operated by 4 people cannot claim to rent boats with a seating capacity between 1 and 4 people. He or she is offering two boat types for 1-2 and 4 persons.
Compatibility with schema.org: This class is a subclass of http://schema.org/Quantity."""@en ;
rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
rdfs:subClassOf gr:QuantitativeValue ;
owl:disjointWith gr:QuantitativeValueFloat .