rdf 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/CREDITS +1 -0
  3. data/VERSION +1 -1
  4. data/lib/rdf.rb +10 -48
  5. data/lib/rdf/cli/vocab-loader.rb +78 -142
  6. data/lib/rdf/mixin/enumerable.rb +25 -0
  7. data/lib/rdf/mixin/mutable.rb +3 -0
  8. data/lib/rdf/model/graph.rb +1 -1
  9. data/lib/rdf/model/node.rb +25 -2
  10. data/lib/rdf/model/statement.rb +20 -12
  11. data/lib/rdf/model/uri.rb +11 -2
  12. data/lib/rdf/nquads.rb +8 -6
  13. data/lib/rdf/ntriples/writer.rb +14 -10
  14. data/lib/rdf/query/pattern.rb +10 -8
  15. data/lib/rdf/reader.rb +11 -2
  16. data/lib/rdf/repository.rb +1 -1
  17. data/lib/rdf/vocab.rb +396 -96
  18. data/lib/rdf/vocab/cc.rb +117 -25
  19. data/lib/rdf/vocab/cert.rb +230 -117
  20. data/lib/rdf/vocab/dc.rb +930 -233
  21. data/lib/rdf/vocab/dc11.rb +151 -37
  22. data/lib/rdf/vocab/doap.rb +326 -114
  23. data/lib/rdf/vocab/exif.rb +930 -533
  24. data/lib/rdf/vocab/foaf.rb +602 -346
  25. data/lib/rdf/vocab/geo.rb +139 -33
  26. data/lib/rdf/vocab/gr.rb +1551 -1084
  27. data/lib/rdf/vocab/ht.rb +319 -0
  28. data/lib/rdf/vocab/ical.rb +507 -349
  29. data/lib/rdf/vocab/ma.rb +504 -280
  30. data/lib/rdf/vocab/mo.rb +2425 -876
  31. data/lib/rdf/vocab/og.rb +178 -90
  32. data/lib/rdf/vocab/owl.rb +513 -219
  33. data/lib/rdf/vocab/prov.rb +1557 -479
  34. data/lib/rdf/vocab/rdfs.rb +107 -31
  35. data/lib/rdf/vocab/rdfv.rb +165 -0
  36. data/lib/rdf/vocab/rsa.rb +61 -18
  37. data/lib/rdf/vocab/rss.rb +55 -22
  38. data/lib/rdf/vocab/schema.rb +8590 -3995
  39. data/lib/rdf/vocab/sioc.rb +657 -218
  40. data/lib/rdf/vocab/skos.rb +227 -134
  41. data/lib/rdf/vocab/skosxl.rb +47 -33
  42. data/lib/rdf/vocab/vcard.rb +693 -327
  43. data/lib/rdf/vocab/void.rb +175 -132
  44. data/lib/rdf/vocab/vs.rb +27 -0
  45. data/lib/rdf/vocab/wdrs.rb +123 -119
  46. data/lib/rdf/vocab/wot.rb +155 -45
  47. data/lib/rdf/vocab/xhtml.rb +2 -1
  48. data/lib/rdf/vocab/xhv.rb +496 -231
  49. data/lib/rdf/vocab/xsd.rb +382 -53
  50. data/lib/rdf/writer.rb +8 -4
  51. metadata +5 -4
  52. data/lib/rdf/vocab/http.rb +0 -84
  53. data/lib/rdf/vocab/v.rb +0 -154
data/lib/rdf/vocab/geo.rb CHANGED
@@ -1,43 +1,149 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  # This file generated automatically using vocab-fetch from http://www.w3.org/2003/01/geo/wgs84_pos#
2
3
  require 'rdf'
3
4
  module RDF
4
5
  class GEO < StrictVocabulary("http://www.w3.org/2003/01/geo/wgs84_pos#")
5
6
 
6
7
  # Class definitions
7
- property :SpatialThing, :label => 'SpatialThing', :comment =>
8
- %(Anything with spatial extent, i.e. size, shape, or position.
9
- e.g. people, places, bowling balls, as well as abstract areas
10
- like cubes.)
11
- property :Point, :label => 'point', :comment =>
12
- %(A point, typically described using a coordinate system
13
- relative to Earth, such as WGS84.)
14
- property :Point, :label => 'point', :comment =>
15
- %(Uniquely identified by lat/long/alt. i.e.
16
- spaciallyIntersects\(P1, P2\) :- lat\(P1, LAT\), long\(P1,
17
- LONG\), alt\(P1, ALT\), lat\(P2, LAT\), long\(P2, LONG\),
18
- alt\(P2, ALT\). sameThing\(P1, P2\) :- type\(P1, Point\),
19
- type\(P2, Point\), spaciallyIntersects\(P1, P2\).)
8
+ term :Point,
9
+ comment: %(A point, typically described using a coordinate system relative to Earth, such as WGS84.
10
+ ).freeze,
11
+ label: "point".freeze,
12
+ subClassOf: "geo:SpatialThing".freeze,
13
+ type: "rdfs:Class".freeze
14
+ term :SpatialThing,
15
+ comment: %(Anything with spatial extent, i.e. size, shape, or position.
16
+ e.g. people, places, bowling balls, as well as abstract areas like cubes.
17
+ ).freeze,
18
+ label: "SpatialThing".freeze,
19
+ type: "rdfs:Class".freeze
20
20
 
21
21
  # Property definitions
22
- property :alt, :label => 'altitude', :comment =>
23
- %(The WGS84 altitude of a SpatialThing \(decimal meters above
24
- the local reference ellipsoid\).)
25
- property :lat_long, :label => 'lat/long', :comment =>
26
- %(A comma-separated representation of a latitude, longitude
27
- coordinate.)
28
- property :lat, :label => 'latitude', :comment =>
29
- %(The WGS84 latitude of a SpatialThing \(decimal degrees\).)
30
- property :location, :label => 'location', :comment =>
31
- %(The relation between something and the point, or other
32
- geometrical thing in space, where it is. For example, the
33
- realtionship between a radio tower and a Point with a given
34
- lat and long. Or a relationship between a park and its outline
35
- as a closed arc of points, or a road and its location as a arc
36
- \(a sequence of points\). Clearly in practice there will be
37
- limit to the accuracy of any such statement, but one would
38
- expect an accuracy appropriate for the size of the object and
39
- uses such as mapping .)
40
- property :long, :label => 'longitude', :comment =>
41
- %(The WGS84 longitude of a SpatialThing \(decimal degrees\).)
22
+ property :alt,
23
+ comment: %(The WGS84 altitude of a SpatialThing \(decimal meters
24
+ above the local reference ellipsoid\).).freeze,
25
+ domain: "geo:SpatialThing".freeze,
26
+ label: "altitude".freeze,
27
+ type: "rdf:Property".freeze
28
+ property :lat,
29
+ comment: %(The WGS84 latitude of a SpatialThing \(decimal degrees\).).freeze,
30
+ domain: "geo:SpatialThing".freeze,
31
+ label: "latitude".freeze,
32
+ type: "rdf:Property".freeze
33
+ property :lat_long,
34
+ comment: %(A comma-separated representation of a latitude, longitude coordinate.).freeze,
35
+ label: "lat/long".freeze,
36
+ type: "rdf:Property".freeze
37
+ property :location,
38
+ comment: %(The relation between something and the point,
39
+ or other geometrical thing in space, where it is. For example, the realtionship between
40
+ a radio tower and a Point with a given lat and long.
41
+ Or a relationship between a park and its outline as a closed arc of points, or a road and
42
+ its location as a arc \(a sequence of points\).
43
+ Clearly in practice there will be limit to the accuracy of any such statement, but one would expect
44
+ an accuracy appropriate for the size of the object and uses such as mapping .
45
+ ).freeze,
46
+ label: "location".freeze,
47
+ range: "geo:SpatialThing".freeze,
48
+ subPropertyOf: "foaf:based_near".freeze,
49
+ type: "rdf:Property".freeze
50
+ property :long,
51
+ comment: %(The WGS84 longitude of a SpatialThing \(decimal degrees\).).freeze,
52
+ domain: "geo:SpatialThing".freeze,
53
+ label: "longitude".freeze,
54
+ type: "rdf:Property".freeze
55
+
56
+ # Extra definitions
57
+ term :"",
58
+ comment: %(
59
+ Recent changes to this namespace:
60
+ $Log: wgs84_pos.rdf,v $
61
+ Revision 1.22 2009/04/20 15:00:30 timbl
62
+ Remove the time bits which have been deal with elsewhere eg in iCal.
63
+
64
+ Revision 1.21 2009/04/20 12:52:47 timbl
65
+ try again
66
+
67
+ Revision 1.20 2009/04/20 12:42:11 timbl
68
+ Add Event \(edited ages ago and never checked in\), and location \(following discussion http://chatlogs.planetrdf.com/swig/2009-04-20#T12-36-09\)
69
+
70
+ Revision 1.19 2009/04/20 12:36:31 timbl
71
+ Add Event \(edited ages ago and never checked in\), and location \(following discussion http://chatlogs.planetrdf.com/swig/2009-04-20#T12-36-09\)
72
+
73
+ Revision 1.18 2006/02/01 22:01:04 danbri
74
+ Clarified that lat and long are decimal degrees, and that alt is decimal metres about local reference ellipsoid
75
+
76
+ Revision 1.17 2004/02/06 17:38:12 danbri
77
+ Fixed a bad commit screwup
78
+
79
+ Revision 1.15 2003/04/19 11:24:08 danbri
80
+ Fixed the typo even more.
81
+
82
+ Revision 1.14 2003/04/19 11:16:56 danbri
83
+ fixed a typo
84
+
85
+ Revision 1.13 2003/02/19 22:27:27 connolly
86
+ relaxed domain constraints on lat/long/alt from Point to SpatialThing
87
+
88
+ Revision 1.12 2003/01/12 01:41:41 danbri
89
+ Trying local copy of XSLT doc.
90
+
91
+ Revision 1.11 2003/01/12 01:20:18 danbri
92
+ added a link to morten's xslt rdfs viewer.
93
+
94
+ Revision 1.10 2003/01/11 18:56:49 danbri
95
+ Removed datatype range from lat and long properties, since they would
96
+ have required each occurance of the property to mention the datatype.
97
+
98
+ Revision 1.9 2003/01/11 11:41:31 danbri
99
+ Another typo; repaired rdfs:Property to rdf:Property x4
100
+
101
+ Revision 1.8 2003/01/11 11:05:02 danbri
102
+ Added an rdfs:range for each lat/long/alt property,
103
+ http://www.w3.org/2001/XMLSchema#float
104
+
105
+ Revision 1.7 2003/01/10 20:25:16 danbri
106
+ Longer rdfs:comment for Point, trying to be Earth-centric and neutral about
107
+ coordinate system\(s\) at the same time. Feedback welcomed.
108
+
109
+ Revision 1.6 2003/01/10 20:18:30 danbri
110
+ Added CVS log comments into the RDF/XML as an rdfs:comment property of the
111
+ vocabulary. Note that this is not common practice \(but seems both harmless
112
+ and potentially useful\).
113
+
114
+
115
+ revision 1.5
116
+ date: 2003/01/10 20:14:31; author: danbri; state: Exp; lines: +16 -5
117
+ Updated schema:
118
+ Added a dc:date, added url for more info. Changed the rdfs:label of the
119
+ namespace from gp to geo. Added a class Point, set as the rdfs:domain of
120
+ each property. Added XML comment on the lat_long property suggesting that
121
+ we might not need it \(based on #rdfig commentary from implementors\).
122
+
123
+ revision 1.4
124
+ date: 2003/01/10 20:01:07; author: danbri; state: Exp; lines: +6 -5
125
+ Fixed typo; several rdfs:about attributes are now rdf:about. Thanks to MortenF in
126
+ #rdfig for catching this error.
127
+
128
+ revision 1.3
129
+ date: 2003/01/10 11:59:03; author: danbri; state: Exp; lines: +4 -3
130
+ fixed buglet in vocab, added more wgs links
131
+
132
+ revision 1.2
133
+ date: 2003/01/10 11:01:11; author: danbri; state: Exp; lines: +4 -4
134
+ Removed alt from the as-a-flat-string property, and switched from
135
+ space separated to comma separated.
136
+
137
+ revision 1.1
138
+ date: 2003/01/10 10:53:23; author: danbri; state: Exp;
139
+ basic geo vocab
140
+
141
+ ).freeze,
142
+ "dc11:date" => %($Date: 2009/04/20 15:00:30 $).freeze,
143
+ "dc11:description" => %(A vocabulary for representing latitude, longitude and
144
+ altitude information in the WGS84 geodetic reference datum.
145
+ Version $Id: wgs84_pos.rdf,v 1.22 2009/04/20 15:00:30 timbl Exp $. See http://www.w3.org/2003/01/geo/ for more details.).freeze,
146
+ "dc11:title" => %(WGS84 Geo Positioning: an RDF vocabulary).freeze,
147
+ label: "geo".freeze
42
148
  end
43
149
  end
data/lib/rdf/vocab/gr.rb CHANGED
@@ -1,1094 +1,1561 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  # This file generated automatically using vocab-fetch from http://www.heppnetz.de/ontologies/goodrelations/v1.owl
2
3
  require 'rdf'
3
4
  module RDF
4
5
  class GR < StrictVocabulary("http://purl.org/goodrelations/v1#")
5
6
 
6
7
  # Class definitions
7
- property :ActualProductOrServiceInstance, :label => 'Actual product or service instance (DEPRECATED)', :comment =>
8
- %(DEPRECATED - This class is superseded by gr:Individual.
9
- Replace all occurrences of gr:ActualProductOrServiceInstance
10
- by gr:Individual, if possible.)
11
- property :Brand, :label => 'Brand', :comment =>
12
- %(A brand is the identity of a specific product, service, or
13
- business. Use foaf:logo for attaching a brand logo and gr:name
14
- or rdfs:label for attaching the brand name. \(Source:
15
- Wikipedia, the free encyclopedia, see
16
- http://en.wikipedia.org/wiki/Brand\))
17
- property :BusinessEntity, :label => 'Business entity', :comment =>
18
- %(An instance of this class represents the legal agent making
19
- \(or seeking\) a particular offering. This can be a legal body
20
- or a person. A business entity has at least a primary mailing
21
- address and contact details. For this, typical address
22
- standards \(vCard\) and location data \(geo, WGS84\) can be
23
- attached. Note that the location of the business entity is not
24
- necessarily the location from which the product or service is
25
- being available \(e.g. the branch or store\). Use gr:Location
26
- for stores and branches. Example: Siemens Austria AG,
27
- Volkswagen Ltd., Peter Miller's Cell phone Shop LLC
28
- Compatibility with schema.org: This class is equivalent to the
29
- union of http://schema.org/Person and
30
- http://schema.org/Organization.)
31
- property :BusinessEntityType, :label => 'Business entity type', :comment =>
32
- %(A business entity type is a conceptual entity representing the
33
- legal form, the size, the main line of business, the position
34
- in the value chain, or any combination thereof, of a
35
- gr:BusinessEntity. From the ontological point of view,
36
- business entity types are mostly roles that a business entity
37
- has in the market. Business entity types are important for
38
- specifying eligible customers, since a gr:Offering is often
39
- valid only for business entities of a certain size, legal
40
- structure, or role in the value chain. Examples: Consumers,
41
- Retailers, Wholesalers, or Public Institutions)
42
- property :BusinessFunction, :label => 'Business function', :comment =>
43
- %(The business function specifies the type of activity or access
44
- \(i.e., the bundle of rights\) offered by the
45
- gr:BusinessEntity on the gr:ProductOrService through the
46
- gr:Offering. Typical are sell, rental or lease, maintenance or
47
- repair, manufacture / produce, recycle / dispose, engineering
48
- / construction, or installation. Licenses and other
49
- proprietary specifications of access rights are also instances
50
- of this class. Examples: A particular offering made by Miller
51
- Rentals Ltd. says that they \(1\) sell Volkswagen Golf
52
- convertibles, \(2\) lease out a particular Ford pick-up truck,
53
- and \(3\) dispose car wrecks of any make and model.)
54
- property :DayOfWeek, :label => 'Day of week', :comment =>
55
- %(The day of the week, used to specify to which day the opening
56
- hours of a gr:OpeningHoursSpecification refer. Examples:
57
- Monday, Tuesday, Wednesday,...)
58
- property :DeliveryChargeSpecification, :label => 'Delivery charge specification', :comment =>
59
- %(A delivery charge specification is a conceptual entity that
60
- specifies the additional costs asked for the delivery of a
61
- given gr:Offering using a particular gr:DeliveryMethod by the
62
- respective gr:BusinessEntity. A delivery charge specification
63
- is characterized by \(1\) a monetary amount per order,
64
- specified as a literal value of type float in combination with
65
- a currency, \(2\) the delivery method, \(3\) the target
66
- country or region, and \(4\) whether this charge includes
67
- local sales taxes, namely VAT. A gr:Offering may be linked to
68
- multiple gr:DeliveryChargeSpecification nodes that specify
69
- alternative charges for disjoint combinations of target
70
- countries or regions, and delivery methods. Examples: Delivery
71
- by direct download is free of charge worldwide, delivery by
72
- UPS to Germany is 10 Euros per order, delivery by mail within
73
- the US is 5 Euros per order. The total amount of this charge
74
- is specified as a float value of the gr:hasCurrencyValue
75
- property. The currency is specified via the gr:hasCurrency
76
- datatype property. Whether the price includes VAT or not is
77
- indicated by the gr:valueAddedTaxIncluded property. The
78
- gr:DeliveryMethod to which this charge applies is specified
79
- using the gr:appliesToDeliveryMethod object property. The
80
- region or regions to which this charge applies is specified
81
- using the gr:eligibleRegions property, which uses ISO 3166-1
82
- and ISO 3166-2 codes. If the price can only be given as a
83
- range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue
84
- for the upper and lower bounds. Important: When querying for
85
- the price, always use gr:hasMaxCurrencyValue and
86
- gr:hasMinCurrencyValue.)
87
- property :DeliveryMethod, :label => 'Delivery method', :comment =>
88
- %(A delivery method is a standardized procedure for transferring
89
- the product or service to the destination of fulfilment chosen
90
- by the customer. Delivery methods are characterized by the
91
- means of transportation used, and by the organization or group
92
- that is the contracting party for the sending
93
- gr:BusinessEntity \(this is important, since the contracted
94
- party may subcontract the fulfilment to smaller, regional
95
- businesses\). Examples: Delivery by mail, delivery by direct
96
- download, delivery by UPS)
97
- property :DeliveryModeParcelService, :label => 'Delivery mode parcel service', :comment =>
98
- %(A private parcel service as the delivery mode available for a
99
- certain offering. Examples: UPS, DHL)
100
- property :Individual, :label => 'Individual', :comment =>
101
- %(A gr:Individual is an actual product or service instance,
102
- i.e., a single identifiable object or action that creates some
103
- increase in utility \(in the economic sense\) for the
104
- individual possessing or using this very object \(product\) or
105
- for the individual in whose favor this very action is being
106
- taken \(service\). Products or services are types of goods in
107
- the economic sense. For an overview of goods and commodities
108
- in economics, see Milgate \(1987\). Examples: MyThinkpad T60,
109
- the pint of beer standing in front of me, my Volkswagen Golf,
110
- the haircut that I received or will be receiving at a given
111
- date and time. Note 1: In many cases, product or service
112
- instances are not explicitly exposed on the Web but only
113
- claimed to exist \(i.e. existentially quantified\). In this
114
- case, use gr:SomeItems. Note 2: This class is the new, shorter
115
- form of the former gr:ActualProductOrServiceInstance.
116
- Compatibility with schema.org: This class is a subclass of
117
- http://schema.org/Product.)
118
- property :License, :label => 'License', :comment =>
119
- %(A license is the specification of a bundle of rights that
120
- determines the type of activity or access offered by the
121
- gr:BusinessEntity on the gr:ProductOrService through the
122
- gr:Offering. Licenses can be standardized \(e.g. LPGL,
123
- Creative Commons, ...\), vendor-specific, or individually
124
- defined for a single offer or product. Whether there is a fee
125
- for obtaining the license is specified using the
126
- gr:UnitPriceSpecification attached to the gr:Offering. Use
127
- foaf:page for linking to a document containing the license,
128
- e.g. in PDF or HTML.)
129
- property :Location, :label => 'Location', :comment =>
130
- %(A location is a point or area of interest from which a
131
- particular product or service is available, e.g. a store, a
132
- bus stop, a gas station, or a ticket booth. The difference to
133
- gr:BusinessEntity is that the gr:BusinessEntity is the legal
134
- entity \(e.g. a person or corporation\) making the offer,
135
- while gr:Location is the store, office, or place. A chain
136
- restaurant will e.g. have one legal entity but multiple
137
- restaurant locations. Locations are characterized by an
138
- address or geographical position and a set of opening hour
139
- specifications for various days of the week. Example: A rental
140
- car company may offer the Business Function Lease Out of cars
141
- from two locations, one in Fort Myers, Florida, and one in
142
- Boston, Massachussetts. Both stations are open 7:00 - 23:00
143
- Mondays through Saturdays. Note: Typical address standards
144
- \(vcard\) and location data \(geo, WGC84\) should be attached
145
- to a gr:Location node. Since there already exist established
146
- vocabularies for this, the GoodRelations ontology does not
147
- provide respective attributes. Instead, the use of respective
148
- vocabularies is recommended. However, the
149
- gr:hasGlobalLocationNumber property is provided for linking to
150
- public identifiers for business locations. Compatibility with
151
- schema.org: This class is equivalent to
152
- http://schema.org/Place.)
153
- property :LocationOfSalesOrServiceProvisioning, :label => 'Location of sales or service provisioning (DEPRECATED)', :comment =>
154
- %(DEPRECATED - This class is superseded by gr:Location. Replace
155
- all occurrences of gr:LocationOfSalesOrServiceProvisioning by
156
- gr:Location, if possible.)
157
- property :"N-Ary-Relations", :label => 'N-ary relations (DEPRECATED)', :comment =>
158
- %(This is the superclass for all classes that are placeholders
159
- for n-ary relations, which OWL cannot represent. DEPRECATED.
160
- Do not use this class in data or queries.)
161
- property :Offering, :label => 'Offering', :comment =>
162
- %(An offering represents the public, not necessarily binding,
163
- not necessarily exclusive, announcement by a gr:BusinessEntity
164
- to provide \(or seek\) a certain gr:BusinessFunction for a
165
- certain gr:ProductOrService to a specified target audience. An
166
- offering is specified by the type of product or service or
167
- bundle it refers to, what business function is being offered
168
- \(sales, rental, ...\), and a set of commercial properties. It
169
- can either refer to \(1\) a clearly specified instance
170
- \(gr:Individual\), \(2\) to a set of anonymous instances of a
171
- given type \(gr:SomeItems\), \(3\) a product model
172
- specification \(gr:ProductOrServiceModel\), see also section
173
- 3.3.3 of the GoodRelations Technical Report. An offering may
174
- be constrained in terms of the eligible type of business
175
- partner, countries, quantities, and other commercial
176
- properties. The definition of the commercial properties, the
177
- type of product offered, and the business function are
178
- explained in other parts of this vocabulary in more detail.
179
- Example: Peter Miller offers to repair TV sets made by
180
- Siemens, Volkswagen Innsbruck sells a particular instance of a
181
- Volkswagen Golf at $10,000. Compatibility with schema.org:
182
- This class is a superclass to http://schema.org/Offer, since
183
- gr:Offering can also represent demand.)
184
- property :OpeningHoursSpecification, :label => 'Opening hours specification', :comment =>
185
- %(This is a conceptual entity that holds together all
186
- information about the opening hours on a given day
187
- \(gr:DayOfWeek\).)
188
- property :PaymentChargeSpecification, :label => 'Payment charge specification', :comment =>
189
- %(A payment charge specification is a conceptual entity that
190
- specifies the additional costs asked for settling the payment
191
- after accepting a given gr:Offering using a particular
192
- gr:PaymentMethod. A payment charge specification is
193
- characterized by \(1\) a monetary amount per order specified
194
- as a literal value of type float in combination with a
195
- Currency, \(2\) the payment method, and \(3\) a whether this
196
- charge includes local sales taxes, namely VAT. A gr:Offering
197
- may be linked to multiple payment charge specifications that
198
- specify alternative charges for various payment methods.
199
- Examples: Payment by VISA or Mastercard costs a fee of 3 Euros
200
- including VAT, payment by bank transfer in advance is free of
201
- charge. The total amount of this surcharge is specified as a
202
- float value of the gr:hasCurrencyValue property. The currency
203
- is specified via the gr:hasCurrency datatype property. Whether
204
- the price includes VAT or not is indicated by the
205
- gr:valueAddedTaxIncluded datatype property. The
206
- gr:PaymentMethod to which this charge applies is specified
207
- using the gr:appliesToPaymentMethod object property. If the
208
- price can only be given as a range, use gr:hasMaxCurrencyValue
209
- and gr:hasMinCurrencyValue for the upper and lower bounds.
210
- Important: When querying for the price, always use
211
- gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.)
212
- property :PaymentMethod, :label => 'Payment method', :comment =>
213
- %(A payment method is a standardized procedure for transferring
214
- the monetary amount for a purchase. Payment methods are
215
- characterized by the legal and technical structures used, and
216
- by the organization or group carrying out the transaction.
217
- This element is mostly used for specifying the types of
218
- payment accepted by a gr:BusinessEntity. Examples: VISA,
219
- MasterCard, Diners, cash, or bank transfer in advance.)
220
- property :PaymentMethodCreditCard, :label => 'Payment method credit card', :comment =>
221
- %(The subclass of gr:PaymentMethod represents all variants and
222
- brands of credit or debit cards as a standardized procedure
223
- for transferring the monetary amount for a purchase. It is
224
- mostly used for specifying the types of payment accepted by a
225
- gr:Business Entity. Examples: VISA, MasterCard, or American
226
- Express.)
227
- property :PriceSpecification, :label => 'Price specification', :comment =>
228
- %(The superclass of all price specifications.)
229
- property :ProductOrService, :label => 'Product or service', :comment =>
230
- %(The superclass of all classes describing products or services
231
- types, either by nature or purpose. Examples for such
232
- subclasses are "TV set", "vacuum cleaner", etc. An instance of
233
- this class can be either an actual product or service
234
- \(gr:Individual\), a placeholder instance for unknown
235
- instances of a mass-produced commodity \(gr:SomeItems\), or a
236
- model / prototype specification \(gr:ProductOrServiceModel\).
237
- When in doubt, use gr:SomeItems. Examples: a\) MyCellphone123,
238
- i.e. my personal, tangible cell phone \(gr:Individual\) b\)
239
- Siemens1234, i.e. the Siemens cell phone make and model 1234
240
- \(gr:ProductOrServiceModel\) c\) dummyCellPhone123 as a
241
- placeholder for actual instances of a certain kind of cell
242
- phones \(gr:SomeItems\) Note: Your first choice for
243
- specializations of gr:ProductOrService should be
244
- http://www.productontology.org. Compatibility with schema.org:
245
- This class is \(approximately\) equivalent to
246
- http://schema.org/Product.)
247
- property :ProductOrServiceModel, :label => 'Product or service model', :comment =>
248
- %(A product or service model is a intangible entity that
249
- specifies some characteristics of a group of similar, usually
250
- mass-produced products, in the sense of a prototype. In case
251
- of mass-produced products, there exists a relation
252
- gr:hasMakeAndModel between the actual product or service
253
- \(gr:Individual or gr:SomeItems\) and the prototype
254
- \(gr:ProductOrServiceModel\). GoodRelations treats product or
255
- service models as "prototypes" instead of a completely
256
- separate kind of entities, because this allows using the same
257
- domain-specific properties \(e.g. gr:weight\) for describing
258
- makes and models and for describing actual products. Examples:
259
- Ford T, Volkswagen Golf, Sony Ericsson W123 cell phone Note:
260
- An actual product or service \(gr:Individual\) by default
261
- shares the features of its model \(e.g. the weight\). However,
262
- this requires non-standard reasoning. See
263
- http://wiki.goodrelations-vocabulary.org/Axioms for respective
264
- rule sets. Compatibility with schema.org: This class is
265
- \(approximately\) a subclass of http://schema.org/Product.)
266
- property :ProductOrServicesSomeInstancesPlaceholder, :label => 'Product or services some instances placeholder (DEPRECATED)', :comment =>
267
- %(DEPRECATED - This class is superseded by gr:SomeItems. Replace
268
- all occurrences of
269
- gr:ProductOrServicesSomeInstancesPlaceholder by gr:SomeItems,
270
- if possible.)
271
- property :QualitativeValue, :label => 'Qualitative value', :comment =>
272
- %(A qualitative value is a predefined value for a product
273
- characteristic. Examples: the color "green" or the power cord
274
- plug type "US"; the garment sizes "S", "M", "L", and "XL".
275
- Note: Value sets are supported by creating subclasses of this
276
- class. Ordinal relations between values \(gr:greater,
277
- gr:lesser, ...\) are provided directly by GoodRelations.
278
- Compatibility with schema.org: This class is equivalent to
279
- http://schema.org/Enumeration.)
280
- property :QuantitativeValue, :label => 'Quantitative value', :comment =>
281
- %(A quantitative value is a numerical interval that represents
282
- the range of a certain gr:quantitativeProductOrServiceProperty
283
- in terms of the lower and upper bounds for a particular
284
- gr:ProductOrService. It is to be interpreted in combination
285
- with the respective unit of measurement. Most quantitative
286
- values are intervals even if they are in practice often
287
- treated as a single point value. Example: a weight between 10
288
- and 25 kilogramms, a length between 10 and 15 milimeters.
289
- Compatibility with schema.org: This class is equivalent to
290
- http://schema.org/Quantity.)
291
- property :QuantitativeValueFloat, :label => 'Quantitative value float', :comment =>
292
- %(An instance of this class is an actual float value for a
293
- quantitative property of a product. This instance is usually
294
- characterized by a minimal value, a maximal value, and a unit
295
- of measurement. Examples: The intervals "between 10.0 and 25.4
296
- kilogramms" or "10.2 and 15.5 milimeters". Compatibility with
297
- schema.org: This class is a subclass of
298
- http://schema.org/Quantity.)
299
- property :QuantitativeValueInteger, :label => 'Quantitative value integer', :comment =>
300
- %(An instance of this class is an actual integer value for a
301
- quantitative property of a product. This instance is usually
302
- characterized by a minimal value, a maximal value, and a unit
303
- of measurement. Example: A seating capacity between 1 and 8
304
- persons. Note: Users must keep in mind that ranges in here
305
- mean that ALL possible values in this interval are covered.
306
- \(Sometimes, the actual commitment may be less than that: "We
307
- sell cars from 2 - 12 seats" does often not really mean that
308
- they have cars with 2,3,4,...12 seats.\). Someone renting out
309
- two types of rowing boats, one that fits for 1 or 2 people,
310
- and another that must be operated by 4 people cannot claim to
311
- rent boats with a seating capacity between 1 and 4 people. He
312
- or she is offering two boat types for 1-2 and 4 persons.
313
- Compatibility with schema.org: This class is a subclass of
314
- http://schema.org/Quantity.)
315
- property :SomeItems, :label => 'Some items', :comment =>
316
- %(A placeholder instance for unknown instances of a
317
- mass-produced commodity. This is used as a computationally
318
- cheap work-around for such instances that are not individually
319
- exposed on the Web but just stated to exist \(i.e., which are
320
- existentially quantified\). Example: An instance of this class
321
- can represent an anonymous set of green Siemens1234 phones. It
322
- is different from the gr:ProductOrServiceModel Siemens1234,
323
- since this refers to the make and model, and it is different
324
- from a particular instance of this make and model \(e.g. my
325
- individual phone\) since the latter can be sold only once.
326
- Note: This class is the new, shorter form of the former
327
- gr:ProductOrServicesSomeInstancesPlaceholder. Compatibility
328
- with schema.org: This class is \(approximately\) a subclass of
329
- http://schema.org/Product.)
330
- property :TypeAndQuantityNode, :label => 'Type and quantity node', :comment =>
331
- %(This class collates all the information about a
332
- gr:ProductOrService included in a bundle. If a gr:Offering
333
- contains just one item, you can directly link from the
334
- gr:Offering to the gr:ProductOrService using gr:includes. If
335
- the offering contains multiple items, use an instance of this
336
- class for each component to indicate the quantity, unit of
337
- measurement, and type of product, and link from the
338
- gr:Offering via gr:includesObject. Example: An offering may
339
- include of 100g of Butter and 1 kg of potatoes, or 1 cell
340
- phone and 2 headsets.)
341
- property :UnitPriceSpecification, :label => 'Unit price specification', :comment =>
342
- %(A unit price specification is a conceptual entity that
343
- specifies the price asked for a given gr:Offering by the
344
- respective gr:Business Entity. An offering may be linked to
345
- multiple unit price specifications that specify alternative
346
- prices for non-overlapping sets of conditions \(e.g.
347
- quantities or sales regions\) or with differing validity
348
- periods. A unit price specification is characterized by \(1\)
349
- the lower and upper limits and the unit of measurement of the
350
- eligible quantity, \(2\) by a monetary amount per unit of the
351
- product or service, and \(3\) whether this prices includes
352
- local sales taxes, namely VAT. Example: The price, including
353
- VAT, for 1 kg of a given material is 5 Euros per kg for 0 - 5
354
- kg and 4 Euros for quantities above 5 kg. The eligible
355
- quantity interval for a given price is specified using the
356
- object property gr:hasEligibleQuantity, which points to an
357
- instance of gr:QuantitativeValue. The currency is specified
358
- using the gr:hasCurrency property, which points to an ISO 4217
359
- currency code. The unit of measurement for the eligible
360
- quantity is specified using the gr:hasUnitOfMeasurement
361
- datatype property, which points to an UN/CEFACT Common Code
362
- \(3 characters\). In most cases, the appropriate unit of
363
- measurement is the UN/CEFACT Common Code "C62" for "Unit or
364
- piece", since a gr:Offering is defined by the quantity and
365
- unit of measurement of all items included \(e.g. "1 kg of
366
- bananas plus a 2 kg of apples"\). As long at the offering
367
- consists of only one item, it is also possible to use an unit
368
- of measurement of choice for specifying the price per unit.
369
- For bundles, however, only "C62" for "Unit or piece" is a
370
- valid unit of measurement. You can assume that the price is
371
- given per unit or piece if there is no gr:hasUnitOfMeasurement
372
- property attached to the price. Whether VAT and sales taxes
373
- are included in this price is specified using the property
374
- gr:valueAddedTaxIncluded \(xsd:boolean\). The price per unit
375
- of measurement is specified as a float value of the
376
- gr:hasCurrencyValue property. The currency is specified via
377
- the gr:hasCurrency datatype property. Whether the price
378
- includes VAT or not is indicated by the
379
- gr:valueAddedTaxIncluded datatype property. The property
380
- priceType can be used to indicate that the price is a retail
381
- price recommendation only \(i.e. a list price\). If the price
382
- can only be given as a range, use gr:hasMaxCurrencyValue and
383
- gr:hasMinCurrencyValue for the upper and lower bounds.
384
- Important: When querying for the price, always use
385
- gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue. Note 1: Due
386
- to the complexity of pricing scenarios in various industries,
387
- it may be necessary to create extensions of this fundamental
388
- model of price specifications. Such can be done easily by
389
- importing and refining the GoodRelations ontology. Note 2: For
390
- Google, attaching a gr:validThrough statement to a
391
- gr:UnitPriceSpecification is mandatory.)
392
- property :WarrantyPromise, :label => 'Warranty promise', :comment =>
393
- %(This is a conceptual entity that holds together all aspects of
394
- the n-ary relation gr:hasWarrantyPromise. A Warranty promise
395
- is an entity representing the duration and scope of services
396
- that will be provided to a customer free of charge in case of
397
- a defect or malfunction of the gr:ProductOrService. A warranty
398
- promise is characterized by its temporal duration \(usually
399
- starting with the date of purchase\) and its gr:WarrantyScope.
400
- The warranty scope represents the types of services provided
401
- \(e.g. labor and parts, just parts\) of the warranty included
402
- in an gr:Offering. The actual services may be provided by the
403
- gr:BusinessEntity making the offering, by the manufacturer of
404
- the product, or by a third party. There may be multiple
405
- warranty promises associated with a particular offering, which
406
- differ in duration and scope \(e.g. pick-up service during the
407
- first 12 months, just parts and labor for 36 months\).
408
- Examples: 12 months parts and labor, 36 months parts)
409
- property :WarrantyScope, :label => 'Warranty scope', :comment =>
410
- %(The warranty scope represents types of services that will be
411
- provided free of charge by the vendor or manufacturer in the
412
- case of a defect \(e.g. labor and parts, just parts\), as part
413
- of the warranty included in an gr:Offering. The actual
414
- services may be provided by the gr:BusinessEntity making the
415
- offering, by the manufacturer of the product, or by a third
416
- party. Examples: Parts and Labor, Parts)
8
+ term :ActualProductOrServiceInstance,
9
+ comment: %(DEPRECATED - This class is superseded by gr:Individual. Replace all occurrences of gr:ActualProductOrServiceInstance by gr:Individual, if possible.).freeze,
10
+ label: "Actual product or service instance (DEPRECATED)".freeze,
11
+ "owl:deprecated" => %(true).freeze,
12
+ "owl:equivalentClass" => %(gr:Individual).freeze,
13
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
14
+ subClassOf: "gr:ProductOrService".freeze,
15
+ type: "owl:Class".freeze
16
+ term :Brand,
17
+ comment: %(A brand is the identity of a specific product, service, or business. Use foaf:logo for attaching a brand logo and gr:name or rdfs:label for attaching the brand name.
18
+
19
+ \(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Brand\)).freeze,
20
+ label: "Brand".freeze,
21
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
22
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
23
+ type: "owl:Class".freeze
24
+ term :BusinessEntity,
25
+ comment: %(An instance of this class represents the legal agent making \(or seeking\) a particular offering. This can be a legal body or a person. A business entity has at least a primary mailing address and contact details. For this, typical address standards \(vCard\) and location data \(geo, WGS84\) can be attached. Note that the location of the business entity is not necessarily the location from which the product or service is being available \(e.g. the branch or store\). Use gr:Location for stores and branches.
26
+
27
+ Example: Siemens Austria AG, Volkswagen Ltd., Peter Miller's Cell phone Shop LLC
28
+
29
+ Compatibility with schema.org: This class is equivalent to the union of http://schema.org/Person and http://schema.org/Organization.
30
+ ).freeze,
31
+ label: "Business entity".freeze,
32
+ "owl:disjointWith" => %(gr:Location).freeze,
33
+ "owl:equivalentClass" => %(_:g2178357860).freeze,
34
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
35
+ type: "owl:Class".freeze
36
+ term :BusinessEntityType,
37
+ comment: %(A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of a gr:BusinessEntity. From the ontological point of view, business entity types are mostly roles that a business entity has in the market. Business entity types are important for specifying eligible customers, since a gr:Offering is often valid only for business entities of a certain size, legal structure, or role in the value chain.
38
+
39
+ Examples: Consumers, Retailers, Wholesalers, or Public Institutions).freeze,
40
+ label: "Business entity type".freeze,
41
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
42
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
43
+ type: "owl:Class".freeze
44
+ term :BusinessFunction,
45
+ comment: %(The business function specifies the type of activity or access \(i.e., the bundle of rights\) offered by the gr:BusinessEntity on the gr:ProductOrService through the gr:Offering. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation.
46
+
47
+ Licenses and other proprietary specifications of access rights are also instances of this class.
48
+
49
+ Examples: A particular offering made by Miller Rentals Ltd. says that they \(1\) sell Volkswagen Golf convertibles, \(2\) lease out a particular Ford pick-up truck, and \(3\) dispose car wrecks of any make and model.).freeze,
50
+ label: "Business function".freeze,
51
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
52
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
53
+ type: "owl:Class".freeze
54
+ term :DayOfWeek,
55
+ comment: %(The day of the week, used to specify to which day the opening hours of a gr:OpeningHoursSpecification refer.
56
+
57
+ Examples: Monday, Tuesday, Wednesday,...).freeze,
58
+ label: "Day of week".freeze,
59
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
60
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
61
+ type: "owl:Class".freeze
62
+ term :DeliveryChargeSpecification,
63
+ comment: %(A delivery charge specification is a conceptual entity that specifies the additional costs asked for the delivery of a given gr:Offering using a particular gr:DeliveryMethod by the respective gr:BusinessEntity. A delivery charge specification is characterized by \(1\) a monetary amount per order, specified as a literal value of type float in combination with a currency, \(2\) the delivery method, \(3\) the target country or region, and \(4\) whether this charge includes local sales taxes, namely VAT.
64
+ A gr:Offering may be linked to multiple gr:DeliveryChargeSpecification nodes that specify alternative charges for disjoint combinations of target countries or regions, and delivery methods.
65
+
66
+ Examples: Delivery by direct download is free of charge worldwide, delivery by UPS to Germany is 10 Euros per order, delivery by mail within the US is 5 Euros per order.
67
+
68
+ The total amount of this charge is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded property. The gr:DeliveryMethod to which this charge applies is specified using the gr:appliesToDeliveryMethod object property. The region or regions to which this charge applies is specified using the gr:eligibleRegions property, which uses ISO 3166-1 and ISO 3166-2 codes.
69
+
70
+ If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.
71
+
72
+ Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.).freeze,
73
+ label: "Delivery charge specification".freeze,
74
+ "owl:disjointWith" => %(gr:PaymentChargeSpecification).freeze,
75
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
76
+ subClassOf: "gr:PriceSpecification".freeze,
77
+ type: "owl:Class".freeze
78
+ term :DeliveryMethod,
79
+ comment: %(A delivery method is a standardized procedure for transferring the product or service to the destination of fulfilment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending gr:BusinessEntity \(this is important, since the contracted party may subcontract the fulfilment to smaller, regional businesses\).
80
+
81
+ Examples: Delivery by mail, delivery by direct download, delivery by UPS).freeze,
82
+ label: "Delivery method".freeze,
83
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
84
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
85
+ type: "owl:Class".freeze
86
+ term :DeliveryModeParcelService,
87
+ comment: %(A private parcel service as the delivery mode available for a certain offering.
88
+
89
+ Examples: UPS, DHL).freeze,
90
+ label: "Delivery mode parcel service".freeze,
91
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
92
+ subClassOf: "gr:DeliveryMethod".freeze,
93
+ type: "owl:Class".freeze
94
+ term :Individual,
95
+ comment: %(A gr:Individual is an actual product or service instance, i.e., a single identifiable object or action that creates some increase in utility \(in the economic sense\) for the individual possessing or using this very object \(product\) or for the individual in whose favor this very action is being taken \(service\). Products or services are types of goods in the economic sense. For an overview of goods and commodities in economics, see Milgate \(1987\).
96
+
97
+ Examples: MyThinkpad T60, the pint of beer standing in front of me, my Volkswagen Golf, the haircut that I received or will be receiving at a given date and time.
98
+
99
+ Note 1: In many cases, product or service instances are not explicitly exposed on the Web but only claimed to exist \(i.e. existentially quantified\). In this case, use gr:SomeItems.
100
+ Note 2: This class is the new, shorter form of the former gr:ActualProductOrServiceInstance.
101
+
102
+ Compatibility with schema.org: This class is a subclass of http://schema.org/Product.).freeze,
103
+ label: "Individual".freeze,
104
+ "owl:disjointWith" => %(gr:SomeItems).freeze,
105
+ "owl:equivalentClass" => %(gr:ActualProductOrServiceInstance).freeze,
106
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
107
+ subClassOf: "gr:ProductOrService".freeze,
108
+ type: "owl:Class".freeze
109
+ term :License,
110
+ comment: %(A license is the specification of a bundle of rights that determines the type of activity or access offered by the gr:BusinessEntity on the gr:ProductOrService through the gr:Offering.
111
+
112
+ Licenses can be standardized \(e.g. LPGL, Creative Commons, ...\), vendor-specific, or individually defined for a single offer or product. Whether there is a fee for obtaining the license is specified using the gr:UnitPriceSpecification attached to the gr:Offering. Use foaf:page for linking to a document containing the license, e.g. in PDF or HTML.).freeze,
113
+ label: "License".freeze,
114
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
115
+ subClassOf: "gr:BusinessFunction".freeze,
116
+ type: "owl:Class".freeze
117
+ term :Location,
118
+ comment: %(A location is a point or area of interest from which a particular product or service is available, e.g. a store, a bus stop, a gas station, or a ticket booth. The difference to gr:BusinessEntity is that the gr:BusinessEntity is the legal entity \(e.g. a person or corporation\) making the offer, while gr:Location is the store, office, or place. A chain restaurant will e.g. have one legal entity but multiple restaurant locations. Locations are characterized by an address or geographical position and a set of opening hour specifications for various days of the week.
119
+
120
+ Example: A rental car company may offer the Business Function Lease Out of cars from two locations, one in Fort Myers, Florida, and one in Boston, Massachussetts. Both stations are open 7:00 - 23:00 Mondays through Saturdays.
121
+
122
+ Note: Typical address standards \(vcard\) and location data \(geo, WGC84\) should be attached to a gr:Location node. Since there already exist established vocabularies for this, the GoodRelations ontology does not provide respective attributes. Instead, the use of respective vocabularies is recommended. However, the gr:hasGlobalLocationNumber property is provided for linking to public identifiers for business locations.
123
+
124
+ Compatibility with schema.org: This class is equivalent to http://schema.org/Place.).freeze,
125
+ label: "Location".freeze,
126
+ "owl:disjointWith" => %(gr:OpeningHoursSpecification).freeze,
127
+ "owl:equivalentClass" => %(gr:LocationOfSalesOrServiceProvisioning).freeze,
128
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
129
+ type: "owl:Class".freeze
130
+ term :LocationOfSalesOrServiceProvisioning,
131
+ comment: %(DEPRECATED - This class is superseded by gr:Location. Replace all occurrences of gr:LocationOfSalesOrServiceProvisioning by gr:Location, if possible.).freeze,
132
+ label: "Location of sales or service provisioning (DEPRECATED)".freeze,
133
+ "owl:deprecated" => %(true).freeze,
134
+ "owl:equivalentClass" => %(gr:Location).freeze,
135
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
136
+ type: "owl:Class".freeze
137
+ term :"N-Ary-Relations",
138
+ comment: %(This is the superclass for all classes that are placeholders for n-ary relations, which OWL cannot represent.
139
+ DEPRECATED. Do not use this class in data or queries.).freeze,
140
+ label: "N-ary relations (DEPRECATED)".freeze,
141
+ "owl:deprecated" => %(true).freeze,
142
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
143
+ type: "owl:Class".freeze
144
+ term :Offering,
145
+ comment: %(An offering represents the public, not necessarily binding, not necessarily exclusive, announcement by a gr:BusinessEntity to provide \(or seek\) a certain gr:BusinessFunction for a certain gr:ProductOrService to a specified target audience. An offering is specified by the type of product or service or bundle it refers to, what business function is being offered \(sales, rental, ...\), and a set of commercial properties. It can either refer to
146
+ \(1\) a clearly specified instance \(gr:Individual\),
147
+ \(2\) to a set of anonymous instances of a given type \(gr:SomeItems\),
148
+ \(3\) a product model specification \(gr:ProductOrServiceModel\), see also section 3.3.3 of the GoodRelations Technical Report.
149
+
150
+ An offering may be constrained in terms of the eligible type of business partner, countries, quantities, and other commercial properties. The definition of the commercial properties, the type of product offered, and the business function are explained in other parts of this vocabulary in more detail.
151
+
152
+ Example: Peter Miller offers to repair TV sets made by Siemens, Volkswagen Innsbruck sells a particular instance of a Volkswagen Golf at $10,000.
153
+
154
+ Compatibility with schema.org: This class is a superclass to http://schema.org/Offer, since gr:Offering can also represent demand.).freeze,
155
+ label: "Offering".freeze,
156
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
157
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
158
+ type: "owl:Class".freeze
159
+ term :OpeningHoursSpecification,
160
+ comment: %(This is a conceptual entity that holds together all information about the opening hours on a given day \(gr:DayOfWeek\).).freeze,
161
+ label: "Opening hours specification".freeze,
162
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
163
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
164
+ type: "owl:Class".freeze
165
+ term :PaymentChargeSpecification,
166
+ comment: %(A payment charge specification is a conceptual entity that specifies the additional costs asked for settling the payment after accepting a given gr:Offering using a particular gr:PaymentMethod. A payment charge specification is characterized by \(1\) a monetary amount per order specified as a literal value of type float in combination with a Currency, \(2\) the payment method, and \(3\) a whether this charge includes local sales taxes, namely VAT.
167
+ A gr:Offering may be linked to multiple payment charge specifications that specify alternative charges for various payment methods.
168
+
169
+ Examples: Payment by VISA or Mastercard costs a fee of 3 Euros including VAT, payment by bank transfer in advance is free of charge.
170
+
171
+ The total amount of this surcharge is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded datatype property. The gr:PaymentMethod to which this charge applies is specified using the gr:appliesToPaymentMethod object property.
172
+
173
+ If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.
174
+
175
+ Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.).freeze,
176
+ label: "Payment charge specification".freeze,
177
+ "owl:disjointWith" => %(gr:UnitPriceSpecification).freeze,
178
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
179
+ subClassOf: "gr:PriceSpecification".freeze,
180
+ type: "owl:Class".freeze
181
+ term :PaymentMethod,
182
+ comment: %(A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction. This element is mostly used for specifying the types of payment accepted by a gr:BusinessEntity.
183
+
184
+ Examples: VISA, MasterCard, Diners, cash, or bank transfer in advance.).freeze,
185
+ label: "Payment method".freeze,
186
+ "owl:disjointWith" => %(gr:Location).freeze,
187
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
188
+ type: "owl:Class".freeze
189
+ term :PaymentMethodCreditCard,
190
+ comment: %(The subclass of gr:PaymentMethod represents all variants and brands of credit or debit cards as a standardized procedure for transferring the monetary amount for a purchase. It is mostly used for specifying the types of payment accepted by a gr:Business Entity.
191
+
192
+ Examples: VISA, MasterCard, or American Express.).freeze,
193
+ label: "Payment method credit card".freeze,
194
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
195
+ subClassOf: "gr:PaymentMethod".freeze,
196
+ type: "owl:Class".freeze
197
+ term :PriceSpecification,
198
+ comment: %(The superclass of all price specifications.).freeze,
199
+ label: "Price specification".freeze,
200
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
201
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
202
+ type: "owl:Class".freeze
203
+ term :ProductOrService,
204
+ comment: %(The superclass of all classes describing products or services types, either by nature or purpose. Examples for such subclasses are "TV set", "vacuum cleaner", etc. An instance of this class can be either an actual product or service \(gr:Individual\), a placeholder instance for unknown instances of a mass-produced commodity \(gr:SomeItems\), or a model / prototype specification \(gr:ProductOrServiceModel\). When in doubt, use gr:SomeItems.
205
+
206
+ Examples:
207
+ a\) MyCellphone123, i.e. my personal, tangible cell phone \(gr:Individual\)
208
+ b\) Siemens1234, i.e. the Siemens cell phone make and model 1234 \(gr:ProductOrServiceModel\)
209
+ c\) dummyCellPhone123 as a placeholder for actual instances of a certain kind of cell phones \(gr:SomeItems\)
210
+
211
+ Note: Your first choice for specializations of gr:ProductOrService should be http://www.productontology.org.
212
+
213
+ Compatibility with schema.org: This class is \(approximately\) equivalent to http://schema.org/Product.).freeze,
214
+ label: "Product or service".freeze,
215
+ "owl:disjointWith" => %(gr:OpeningHoursSpecification).freeze,
216
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
217
+ type: "owl:Class".freeze
218
+ term :ProductOrServiceModel,
219
+ comment: %(A product or service model is a intangible entity that specifies some characteristics of a group of similar, usually mass-produced products, in the sense of a prototype. In case of mass-produced products, there exists a relation gr:hasMakeAndModel between the actual product or service \(gr:Individual or gr:SomeItems\) and the prototype \(gr:ProductOrServiceModel\). GoodRelations treats product or service models as "prototypes" instead of a completely separate kind of entities, because this allows using the same domain-specific properties \(e.g. gr:weight\) for describing makes and models and for describing actual products.
220
+
221
+ Examples: Ford T, Volkswagen Golf, Sony Ericsson W123 cell phone
222
+
223
+ Note: An actual product or service \(gr:Individual\) by default shares the features of its model \(e.g. the weight\). However, this requires non-standard reasoning. See http://wiki.goodrelations-vocabulary.org/Axioms for respective rule sets.
224
+
225
+ Compatibility with schema.org: This class is \(approximately\) a subclass of http://schema.org/Product.).freeze,
226
+ label: "Product or service model".freeze,
227
+ "owl:disjointWith" => %(gr:SomeItems).freeze,
228
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
229
+ subClassOf: "gr:ProductOrService".freeze,
230
+ type: "owl:Class".freeze
231
+ term :ProductOrServicesSomeInstancesPlaceholder,
232
+ comment: %(DEPRECATED - This class is superseded by gr:SomeItems. Replace all occurrences of gr:ProductOrServicesSomeInstancesPlaceholder by gr:SomeItems, if possible.).freeze,
233
+ label: "Product or services some instances placeholder (DEPRECATED)".freeze,
234
+ "owl:deprecated" => %(true).freeze,
235
+ "owl:equivalentClass" => %(gr:SomeItems).freeze,
236
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
237
+ subClassOf: "gr:ProductOrService".freeze,
238
+ type: "owl:Class".freeze
239
+ term :QualitativeValue,
240
+ comment: %(A qualitative value is a predefined value for a product characteristic.
241
+
242
+ Examples: the color "green" or the power cord plug type "US"; the garment sizes "S", "M", "L", and "XL".
243
+
244
+ Note: Value sets are supported by creating subclasses of this class. Ordinal relations between values \(gr:greater, gr:lesser, ...\) are provided directly by GoodRelations.
245
+
246
+ Compatibility with schema.org: This class is equivalent to http://schema.org/Enumeration.).freeze,
247
+ label: "Qualitative value".freeze,
248
+ "owl:disjointWith" => %(gr:QuantitativeValue).freeze,
249
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
250
+ type: "owl:Class".freeze
251
+ term :QuantitativeValue,
252
+ comment: %(A quantitative value is a numerical interval that represents the range of a certain gr:quantitativeProductOrServiceProperty in terms of the lower and upper bounds for a particular gr:ProductOrService. It is to be interpreted in combination with the respective unit of measurement. Most quantitative values are intervals even if they are in practice often treated as a single point value.
253
+
254
+ Example: a weight between 10 and 25 kilogramms, a length between 10 and 15 milimeters.
255
+
256
+ Compatibility with schema.org: This class is equivalent to http://schema.org/Quantity.).freeze,
257
+ label: "Quantitative value".freeze,
258
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
259
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
260
+ type: "owl:Class".freeze
261
+ term :QuantitativeValueFloat,
262
+ comment: %(An instance of this class is an actual float 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.
263
+
264
+ Examples: The intervals "between 10.0 and 25.4 kilogramms" or "10.2 and 15.5 milimeters".
265
+
266
+ Compatibility with schema.org: This class is a subclass of http://schema.org/Quantity.).freeze,
267
+ label: "Quantitative value float".freeze,
268
+ "owl:disjointWith" => %(gr:QuantitativeValueInteger).freeze,
269
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
270
+ subClassOf: "gr:QuantitativeValue".freeze,
271
+ type: "owl:Class".freeze
272
+ term :QuantitativeValueInteger,
273
+ 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.
274
+
275
+ Example: A seating capacity between 1 and 8 persons.
276
+
277
+ 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.
278
+
279
+ Compatibility with schema.org: This class is a subclass of http://schema.org/Quantity.).freeze,
280
+ label: "Quantitative value integer".freeze,
281
+ "owl:disjointWith" => %(gr:QuantitativeValueFloat).freeze,
282
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
283
+ subClassOf: "gr:QuantitativeValue".freeze,
284
+ type: "owl:Class".freeze
285
+ term :SomeItems,
286
+ comment: %(A placeholder instance for unknown instances of a mass-produced commodity. This is used as a computationally cheap work-around for such instances that are not individually exposed on the Web but just stated to exist \(i.e., which are existentially quantified\).
287
+
288
+ Example: An instance of this class can represent an anonymous set of green Siemens1234 phones. It is different from the gr:ProductOrServiceModel Siemens1234, since this refers to the make and model, and it is different from a particular instance of this make and model \(e.g. my individual phone\) since the latter can be sold only once.
289
+
290
+ Note: This class is the new, shorter form of the former gr:ProductOrServicesSomeInstancesPlaceholder.
291
+
292
+ Compatibility with schema.org: This class is \(approximately\) a subclass of http://schema.org/Product.).freeze,
293
+ label: "Some items".freeze,
294
+ "owl:disjointWith" => %(gr:ProductOrServiceModel).freeze,
295
+ "owl:equivalentClass" => %(gr:ProductOrServicesSomeInstancesPlaceholder).freeze,
296
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
297
+ subClassOf: "gr:ProductOrService".freeze,
298
+ type: "owl:Class".freeze
299
+ term :TypeAndQuantityNode,
300
+ comment: %(This class collates all the information about a gr:ProductOrService included in a bundle. If a gr:Offering contains just one item, you can directly link from the gr:Offering to the gr:ProductOrService using gr:includes. If the offering contains multiple items, use an instance of this class for each component to indicate the quantity, unit of measurement, and type of product, and link from the gr:Offering via gr:includesObject.
301
+
302
+ Example: An offering may include of 100g of Butter and 1 kg of potatoes, or 1 cell phone and 2 headsets.).freeze,
303
+ label: "Type and quantity node".freeze,
304
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
305
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
306
+ type: "owl:Class".freeze
307
+ term :UnitPriceSpecification,
308
+ comment: %(A unit price specification is a conceptual entity that specifies the price asked for a given gr:Offering by the respective gr:Business Entity. An offering may be linked to multiple unit price specifications that specify alternative prices for non-overlapping sets of conditions \(e.g. quantities or sales regions\) or with differing validity periods.
309
+
310
+ A unit price specification is characterized by \(1\) the lower and upper limits and the unit of measurement of the eligible quantity, \(2\) by a monetary amount per unit of the product or service, and \(3\) whether this prices includes local sales taxes, namely VAT.
311
+
312
+ Example: The price, including VAT, for 1 kg of a given material is 5 Euros per kg for 0 - 5 kg and 4 Euros for quantities above 5 kg.
313
+
314
+ The eligible quantity interval for a given price is specified using the object property gr:hasEligibleQuantity, which points to an instance of gr:QuantitativeValue. The currency is specified using the gr:hasCurrency property, which points to an ISO 4217 currency code. The unit of measurement for the eligible quantity is specified using the gr:hasUnitOfMeasurement datatype property, which points to an UN/CEFACT Common Code \(3 characters\).
315
+
316
+ In most cases, the appropriate unit of measurement is the UN/CEFACT Common Code "C62" for "Unit or piece", since a gr:Offering is defined by the quantity and unit of measurement of all items included \(e.g. "1 kg of bananas plus a 2 kg of apples"\). As long at the offering consists of only one item, it is also possible to use an unit of measurement of choice for specifying the price per unit. For bundles, however, only "C62" for "Unit or piece" is a valid unit of measurement.
317
+
318
+ You can assume that the price is given per unit or piece if there is no gr:hasUnitOfMeasurement property attached to the price.
319
+
320
+ Whether VAT and sales taxes are included in this price is specified using the property gr:valueAddedTaxIncluded \(xsd:boolean\).
321
+
322
+ The price per unit of measurement is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded datatype property.
323
+
324
+ The property priceType can be used to indicate that the price is a retail price recommendation only \(i.e. a list price\).
325
+
326
+ If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.
327
+
328
+ Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.
329
+
330
+ Note 1: Due to the complexity of pricing scenarios in various industries, it may be necessary to create extensions of this fundamental model of price specifications. Such can be done easily by importing and refining the GoodRelations ontology.
331
+
332
+ Note 2: For Google, attaching a gr:validThrough statement to a gr:UnitPriceSpecification is mandatory.
333
+ ).freeze,
334
+ label: "Unit price specification".freeze,
335
+ "owl:disjointWith" => %(gr:PaymentChargeSpecification).freeze,
336
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
337
+ subClassOf: "gr:PriceSpecification".freeze,
338
+ type: "owl:Class".freeze
339
+ term :WarrantyPromise,
340
+ comment: %(This is a conceptual entity that holds together all aspects of the n-ary relation gr:hasWarrantyPromise.
341
+
342
+ A Warranty promise is an entity representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of the gr:ProductOrService. A warranty promise is characterized by its temporal duration \(usually starting with the date of purchase\) and its gr:WarrantyScope. The warranty scope represents the types of services provided \(e.g. labor and parts, just parts\) of the warranty included in an gr:Offering. The actual services may be provided by the gr:BusinessEntity making the offering, by the manufacturer of the product, or by a third party. There may be multiple warranty promises associated with a particular offering, which differ in duration and scope \(e.g. pick-up service during the first 12 months, just parts and labor for 36 months\).
343
+
344
+ Examples: 12 months parts and labor, 36 months parts).freeze,
345
+ label: "Warranty promise".freeze,
346
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
347
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
348
+ type: "owl:Class".freeze
349
+ term :WarrantyScope,
350
+ comment: %(The warranty scope represents types of services that will be provided free of charge by the vendor or manufacturer in the case of a defect \(e.g. labor and parts, just parts\), as part of the warranty included in an gr:Offering. The actual services may be provided by the gr:BusinessEntity making the offering, by the manufacturer of the product, or by a third party.
351
+
352
+ Examples: Parts and Labor, Parts).freeze,
353
+ label: "Warranty scope".freeze,
354
+ "owl:disjointWith" => %(gr:ProductOrService).freeze,
355
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
356
+ type: "owl:Class".freeze
417
357
 
418
358
  # Property definitions
419
- property :taxID, :label => 'Tax ID (0..1)', :comment =>
420
- %(The Tax / Fiscal ID of the gr:BusinessEntity, e.g. the TIN in
421
- the US or the CIF/NIF in Spain. It is usually assigned by the
422
- country of residence)
423
- property :vatID, :label => 'VAT ID (0..1)', :comment =>
424
- %(The Value-added Tax ID of the gr:BusinessEntity. See
425
- http://en.wikipedia.org/wiki/Value_added_tax_identification_number
426
- for details.)
427
- property :amountOfThisGood, :label => 'amount of this good (1..1)', :comment =>
428
- %(This property specifies the quantity of the goods included in
429
- the gr:Offering via this gr:TypeAndQuantityNode. The quantity
430
- is given in the unit of measurement attached to the
431
- gr:TypeAndQuantityNode.)
432
- property :availabilityEnds, :label => 'availability ends (0..1)', :comment =>
433
- %(This property specifies the end of the availability of the
434
- gr:ProductOrService included in the gr:Offering. The
435
- difference to the properties gr:validFrom and gr:validThrough
436
- is that those specify the period of time during which the
437
- offer is valid and can be accepted. Example: I offer to lease
438
- my boat for the period of August 1 - August 31, 2010, but you
439
- must accept by offer no later than July 15. A time-zone should
440
- be specified. For a time in GMT/UTC, simply add a "Z"
441
- following the time: 2008-05-30T09:30:10Z. Alternatively, you
442
- can specify an offset from the UTC time by adding a positive
443
- or negative time following the time: 2008-05-30T09:30:10-09:00
444
- or 2008-05-30T09:30:10+09:00. Note: There is another property
445
- gr:availableAtOrFrom, which is used to indicate the
446
- gr:Location \(e.g. store or shop\) from which the goods would
447
- be available.)
448
- property :availabilityStarts, :label => 'availability starts (0..1)', :comment =>
449
- %(This property specifies the beginning of the availability of
450
- the gr:ProductOrService included in the gr:Offering. The
451
- difference to the properties gr:validFrom and gr:validThrough
452
- is that those specify the period of time during which the
453
- offer is valid and can be accepted. Example: I offer to lease
454
- my boat for the period of August 1 - August 31, 2010, but you
455
- must accept by offer no later than July 15. A time-zone should
456
- be specified. For a time in GMT/UTC, simply add a "Z"
457
- following the time: 2008-05-30T09:30:10Z. Alternatively, you
458
- can specify an offset from the UTC time by adding a positive
459
- or negative time following the time: 2008-05-30T09:30:10-09:00
460
- or 2008-05-30T09:30:10+09:00. Note: There is another property
461
- gr:availableAtOrFrom, which is used to indicate the
462
- gr:Location \(e.g. store or shop\) from which the goods would
463
- be available.)
464
- property :billingIncrement, :label => 'billing increment (0..1)', :comment =>
465
- %(This property specifies the minimal quantity and rounding
466
- increment that will be the basis for the billing. The unit of
467
- measurement is specified by the UN/CEFACT code attached to the
468
- gr:UnitPriceSpecification via the gr:hasUnitOfMeasurement
469
- property. Examples: - The price for gasoline is 4 USD per
470
- gallon at the pump, but you will be charged in units of 0.1
471
- gallons. - The price for legal consulting is 100 USD per hour,
472
- but you will be charged in units of 15 minutes. This property
473
- makes sense only for instances of gr:Offering that include not
474
- more than one type of good or service.)
475
- property :category, :label => 'category (0..*)', :comment =>
476
- %(The name of a category to which this gr:ProductOrService,
477
- gr:Offering, gr:BusinessEntity, or gr:Location belongs. Note
478
- 1: For products, it is better to add an rdf:type statement
479
- referring to a GoodRelations-compliant ontology for vertical
480
- industries instead, but if you just have a short text label,
481
- gr:category is simpler. Note 2: You can use greater signs or
482
- slashes to informally indicate a category hierarchy, e.g.
483
- "restaurants/asian_restaurants" or "cables > usb_cables")
484
- property :closes, :label => 'closes (1..1)', :comment =>
485
- %(The closing hour of the gr:Location on the given gr:DayOfWeek.
486
- If no time-zone suffix is included, the time is given in the
487
- local time valid at the gr:Location. For a time in GMT/UTC,
488
- simply add a "Z" following the time: 09:30:10Z. Alternatively,
489
- you can specify an offset from the UTC time by adding a
490
- positive or negative time following the time: 09:30:10-09:00
491
- 09:30:10+09:00. Note 1: Use 00:00:00 for the first second of
492
- the respective day and 23:59:59 for the last second of that
493
- day. Note 2: If a store opens at 17:00 on Saturdays and closes
494
- at 03:00:00 a.m. next morning, use two instances of this
495
- class, one with 17:00:00 - 23:59:59 for Saturday and another
496
- one with 00:00:00 - 03:00:00 for Sunday. Note 3: If the shop
497
- re-opens on the same day of the week or set of days of the
498
- week, you must create a second instance of
499
- gr:OpeningHoursSpecification.)
500
- property :color, :label => 'color (0..1)', :comment =>
501
- %(The color of the product.)
502
- property :condition, :label => 'condition (0..1)', :comment =>
503
- %(A textual description of the condition of the product or
504
- service, or the products or services included in the offer
505
- \(when attached to a gr:Offering\))
506
- property :datatypeProductOrServiceProperty, :label => 'datatype product or service property (0..*)', :comment =>
507
- %(This property is the super property for all pure datatype
508
- properties that can be used to describe a gr:ProductOrService.
509
- In products and services ontologies, only such properties that
510
- are no quantitative properties and that have no predefined
511
- gr:QualitativeValue instances are subproperties of this
512
- property. In practice, this refers to a few integer properties
513
- for which the integer value represents qualitative aspects,
514
- for string datatypes \(as long as no predefined values
515
- exist\), for boolean datatype properties, and for dates and
516
- times.)
517
- property :description, :label => 'description (0..1)', :comment =>
518
- %(A short textual description of the resource. This property is
519
- semantically equivalent to rdfs:comment and just meant as a
520
- handy shortcut for marking up data.)
521
- property :durationOfWarrantyInMonths, :label => 'duration of warranty in months (0..1)', :comment =>
522
- %(This property specifies the duration of the gr:WarrantyPromise
523
- in months.)
524
- property :eligibleRegions, :label => 'eligible regions (0..*)', :comment =>
525
- %(This property specifies the geo-political region or regions
526
- for which the gr:Offering, gr:License, or
527
- gr:DeliveryChargeSpecification is valid using the
528
- two-character version of ISO 3166-1 \(ISO 3166-1 alpha-2\) for
529
- regions or ISO 3166-2 , which breaks down the countries from
530
- ISO 3166-1 into administrative subdivisions. Important: Do NOT
531
- use 3-letter ISO 3166-1 codes!)
532
- property :hasDUNS, :label => 'has DUNS (0..1)', :comment =>
533
- %(The Dun & Bradstreet DUNS number for identifying a
534
- gr:BusinessEntity. The Dun & Bradstreet DUNS is a nine-digit
535
- number used to identify legal entities \(but usually not
536
- branches or locations of logistical importance only\).)
537
- property :"hasGTIN-14", :label => 'has GTIN-14 (0..*)', :comment =>
538
- %(The Global Trade Item Number \(GTIN-14\) of the given
539
- gr:ProductOrService or gr:Offering.)
540
- property :"hasGTIN-8", :label => 'has GTIN-8 (0..*)', :comment =>
541
- %(The 8-digit Global Trade Item Number \(GTIN-8\) of the given
542
- gr:ProductOrService or gr:Offering, also known as EAN/UCC-8
543
- \(8-digit EAN\).)
544
- property :hasGlobalLocationNumber, :label => 'has Global Location Number (0..1)', :comment =>
545
- %(The Global Location Number \(GLN, sometimes also referred to
546
- as International Location Number or ILN\) of the respective
547
- gr:BusinessEntity or gr:Location. The Global Location Number
548
- is a thirteen-digit number used to identify parties and
549
- physical locations.)
550
- property :hasISICv4, :label => 'has ISIC v4 (0..*)', :comment =>
551
- %(The International Standard of Industrial Classification of All
552
- Economic Activities \(ISIC\), Revision 4 code for a particular
553
- gr:BusinessEntity or gr:Location. See
554
- http://unstats.un.org/unsd/cr/registry/isic-4.asp for more
555
- information. Note: While ISIC codes are sometimes misused for
556
- classifying products or services, they are designed and suited
557
- only for classifying business establishments.)
558
- property :hasMPN, :label => 'has MPN (0..*)', :comment =>
559
- %(The Manufacturer Part Number or MPN is a unique identifier for
560
- a product, service, or bundle from the perspective of a
561
- particular manufacturer. MPNs can be assigned to products or
562
- product datasheets, or bundles. Accordingly, the domain of
563
- this property is the union of gr:ProductOrService \(the common
564
- superclass of goods and datasheets\), and gr:Offering.
565
- Important: Be careful when assuming two products or services
566
- instances or offering instances to be identical based on the
567
- MPN. Since MPNs are unique only for the same
568
- gr:BusinessEntity, this holds only when the two MPN values
569
- refer to the same gr:BusinessEntity. Such can be done by
570
- taking into account the provenance of the data. Usually, the
571
- properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more
572
- reliable identifiers, because they are globally unique. See
573
- also http://en.wikipedia.org/wiki/Part_number)
574
- property :hasNAICS, :label => 'has NAICS (0..*)', :comment =>
575
- %(The North American Industry Classification System \(NAICS\)
576
- code for a particular gr:BusinessEntity. See
577
- http://www.census.gov/eos/www/naics/ for more details. Note:
578
- While NAICS codes are sometimes misused for classifying
579
- products or services, they are designed and suited only for
580
- classifying business establishments.)
581
- property :hasStockKeepingUnit, :label => 'has Stock Keeping Unit (0..*)', :comment =>
582
- %(The Stock Keeping Unit, or SKU is a unique identifier for a
583
- product, service, or bundle from the perspective of a
584
- particular supplier, i.e. SKUs are mostly assigned and
585
- serialized at the merchant level. Examples of SKUs are the
586
- ordering or parts numbers used by a particular Web shop or
587
- catalog. Consequently, the domain of gr:hasStockKeepingUnit is
588
- the union of the classes gr:Offering and gr:ProductOrService.
589
- If attached to a gr:Offering, the SKU will usually reflect a
590
- merchant-specific identifier, i.e. one valid only for that
591
- particular retailer or shop. If attached to a
592
- gr:ProductOrServiceModel, the SKU can reflect either the
593
- identifier used by the merchant or the part number used by the
594
- official manufacturer of that part. For the latter, gr:hasMPN
595
- is a better choice. Important: Be careful when assuming two
596
- products or services instances or offering instances to be
597
- identical based on the SKU. Since SKUs are unique only for the
598
- same gr:BusinessEntity, this can be assumed only when you are
599
- sure that the two SKU values refer to the same business
600
- entity. Such can be done by taking into account the provenance
601
- of the data. As long as instances of gr:Offering are
602
- concerned, you can also check that the offerings are being
603
- offered by the same gr:Business Entity. Usually, the
604
- properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more
605
- reliable identifiers, because they are globally unique. See
606
- also http://en.wikipedia.org/wiki/Stock_Keeping_Unit.)
607
- property :hasCurrency, :label => 'has currency (1..1)', :comment =>
608
- %(The currency for all prices in the gr:PriceSpecification given
609
- using the ISO 4217 standard \(3 characters\).)
610
- property :hasCurrencyValue, :label => 'has currency value (0..1)', :comment =>
611
- %(This property specifies the amount of money for a price per
612
- unit, shipping charges, or payment charges. The currency and
613
- other relevant details are attached to the respective
614
- gr:PriceSpecification etc. For a gr:UnitPriceSpecification,
615
- this is the price for one unit or bundle \(as specified in the
616
- unit of measurement of the unit price specification\) of the
617
- respective gr:ProductOrService. For a
618
- gr:DeliveryChargeSpecification or a
619
- gr:PaymentChargeSpecification, it is the price per delivery or
620
- payment. GoodRelations also supports giving price information
621
- as intervals only. If this is needed, use
622
- gr:hasMaxCurrencyValue for the upper bound and
623
- gr:hasMinCurrencyValue for the lower bound. Using
624
- gr:hasCurrencyValue sets the upper and lower bounds to the
625
- same given value, i.e., x gr:hasCurrencyValue y implies x
626
- gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.)
627
- property :hasMaxCurrencyValue, :label => 'has max currency value (1..1)', :comment =>
628
- %(This property specifies the UPPER BOUND of the amount of money
629
- for a price RANGE per unit, shipping charges, or payment
630
- charges. The currency and other relevant details are attached
631
- to the respective gr:PriceSpecification etc. For a
632
- gr:UnitPriceSpecification, this is the UPPER BOUND for the
633
- price for one unit or bundle \(as specified in the unit of
634
- measurement of the unit price specification\) of the
635
- respective gr:ProductOrService. For a
636
- gr:DeliveryChargeSpecification or a
637
- gr:PaymentChargeSpecification, it is the UPPER BOUND of the
638
- price per delivery or payment. Using gr:hasCurrencyValue sets
639
- the upper and lower bounds to the same given value, i.e., x
640
- gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x
641
- gr:hasMaxCurrencyValue y.)
642
- property :hasMaxValue, :label => 'has max value (0..1)', :comment =>
643
- %(This property captures the upper limit of a
644
- gr:QuantitativeValue instance.)
645
- property :hasMaxValueFloat, :label => 'has max value float (1..1)', :comment =>
646
- %(This property captures the upper limit of a
647
- gr:QuantitativeValueFloat instance.)
648
- property :hasMaxValueInteger, :label => 'has max value integer (1..1)', :comment =>
649
- %(This property captures the upper limit of a
650
- gr:QuantitativeValueInteger instance.)
651
- property :hasMinCurrencyValue, :label => 'has min currency value (1..1)', :comment =>
652
- %(This property specifies the LOWER BOUND of the amount of money
653
- for a price RANGE per unit, shipping charges, or payment
654
- charges. The currency and other relevant details are attached
655
- to the respective gr:PriceSpecification etc. For a
656
- gr:UnitPriceSpecification, this is the LOWER BOUND for the
657
- price for one unit or bundle \(as specified in the unit of
658
- measurement of the unit price specification\) of the
659
- respective gr:ProductOrService. For a
660
- gr:DeliveryChargeSpecification or a
661
- gr:PaymentChargeSpecification, it is the LOWER BOUND of the
662
- price per delivery or payment. Using gr:hasCurrencyValue sets
663
- the upper and lower bounds to the same given value, i.e., x
664
- gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x
665
- gr:hasMaxCurrencyValue y.)
666
- property :hasMinValue, :label => 'has min value (0..1)', :comment =>
667
- %(This property captures the lower limit of a
668
- gr:QuantitativeValue instance.)
669
- property :hasMinValueFloat, :label => 'has min value float (1..1)', :comment =>
670
- %(This property captures the lower limit of a
671
- gr:QuantitativeValueFloat instance.)
672
- property :hasMinValueInteger, :label => 'has min value integer (1..1)', :comment =>
673
- %(This property captures the lower limit of a
674
- gr:QuantitativeValueInteger instance.)
675
- property :hasUnitOfMeasurement, :label => 'has unit of measurement (1..1)', :comment =>
676
- %(The unit of measurement for a gr:QuantitativeValue, a
677
- gr:UnitPriceSpecification, or a gr:TypeAndQuantityNode given
678
- using the UN/CEFACT Common Code \(3 characters\).)
679
- property :hasValue, :label => 'has value (0..1)', :comment =>
680
- %(This subproperty specifies that the upper and lower limit of
681
- the given gr:QuantitativeValue are identical and have the
682
- respective value. It is a shortcut for such cases where a
683
- quantitative property is \(at least practically\) a single
684
- point value and not an interval.)
685
- property :hasValueFloat, :label => 'has value float (0..1)', :comment =>
686
- %(This subproperty specifies that the upper and lower limit of
687
- the given gr:QuantitativeValueFloat are identical and have the
688
- respective float value. It is a shortcut for such cases where
689
- a quantitative property is \(at least practically\) a single
690
- point value and not an interval.)
691
- property :hasValueInteger, :label => 'has value integer (0..1)', :comment =>
692
- %(This subproperty specifies that the upper and lower limit of
693
- the given gr:QuantitativeValueInteger are identical and have
694
- the respective integer value. It is a shortcut for such cases
695
- where a quantitative property is \(at least practically\) a
696
- single point value and not an interval.)
697
- property :isListPrice, :label => 'is list price (DEPRECATED)', :comment =>
698
- %(This boolean attribute indicates whether a
699
- gr:UnitPriceSpecification is a list price \(usually a vendor
700
- recommendation\) or not. "true" indicates it is a list price,
701
- "false" indicates it is not. DEPRECATED. Use the gr:priceType
702
- property instead.)
703
- property :legalName, :label => 'legal name (0..1)', :comment =>
704
- %(The legal name of the gr:BusinessEntity.)
705
- property :name, :label => 'name (0..1)', :comment =>
706
- %(A short text describing the respective resource. This property
707
- is semantically equivalent to dcterms:title and rdfs:label and
708
- just meant as a handy shortcut for marking up data.)
709
- property :opens, :label => 'opens (1..1)', :comment =>
710
- %(The opening hour of the gr:Location on the given gr:DayOfWeek.
711
- If no time-zone suffix is included, the time is given in the
712
- local time valid at the gr:Location. For a time in GMT/UTC,
713
- simply add a "Z" following the time: 09:30:10Z. Alternatively,
714
- you can specify an offset from the UTC time by adding a
715
- positive or negative time following the time: 09:30:10-09:00
716
- or 09:30:10+09:00. Note 1: Use 00:00:00 for the first second
717
- of the respective day and 23:59:59 for the last second of that
718
- day. Note 2: If a store opens at 17:00 on Saturdays and closes
719
- at 03:00:00 a.m. next morning, use 17:00:00 - 23:59:59 for
720
- Saturday and 00:00:00 - 03:00:00 for Sunday. Note 3: If the
721
- shop re-opens on the same day of the week or set of days of
722
- the week, you must create a second instance of
723
- gr:OpeningHoursSpecification.)
724
- property :priceType, :label => 'price type (0..1)', :comment =>
725
- %(This attribute can be used to distinguish multiple different
726
- price specifications for the same gr:Offering. It supersedes
727
- the former gr:isListPrice property. The following values are
728
- recommended: The absence of this property marks the actual
729
- sales price. SRP: "suggested retail price" - applicable for
730
- all sorts of a non-binding retail price recommendations, e.g.
731
- such published by the manufacturer or the distributor. This
732
- value replaces the former gr:isListPrice property. INVOICE:
733
- The invoice price, mostly used in the car industry - this is
734
- the price a dealer pays to the manufacturer, excluding rebates
735
- and charges.)
736
- property :serialNumber, :label => 'serial number (0..*)', :comment =>
737
- %(The serial number or any alphanumeric identifier of a
738
- particular product. Note that serial number are unique only
739
- for the same brand or the same model, so you cannot infer from
740
- two occurrences of the same serial number that the objects to
741
- which they are attached are identical. This property can also
742
- be attached to a gr:Offering in cases where the included
743
- products are not modeled in more detail.)
744
- property :validFrom, :label => 'valid from (0..1)', :comment =>
745
- %(This property specifies the beginning of the validity of the
746
- gr:Offering, gr:PriceSpecification, gr:License, or
747
- gr:OpeningHoursSpecification. A time-zone should be specified.
748
- For a time in GMT/UTC, simply add a "Z" following the time:
749
- 2008-05-30T09:30:10Z. Alternatively, you can specify an offset
750
- from the UTC time by adding a positive or negative time
751
- following the time: 2008-05-30T09:30:10-09:00 or
752
- 2008-05-30T09:30:10+09:00. Note: If multiple contradicting
753
- instances of a gr:Offering, gr:PriceSpecification, or
754
- gr:OpeningHoursSpecification exist, it is a good heuristics to
755
- assume that 1. Information with validity information for the
756
- respective period of time ranks higher than information
757
- without validity information. 2. Among conflicting nodes both
758
- having validity information, the one with the shorter validity
759
- span ranks higher.)
760
- property :validThrough, :label => 'valid through (0..1)', :comment =>
761
- %(This property specifies the end of the validity of the
762
- gr:Offering, gr:PriceSpecification, gr:License, or
763
- gr:OpeningHoursSpecification. A time-zone should be specified.
764
- For a time in GMT/UTC, simply add a "Z" following the time:
765
- 2008-05-30T09:30:10Z. Alternatively, you can specify an offset
766
- from the UTC time by adding a positive or negative time
767
- following the time: 2008-05-30T09:30:10-09:00 or
768
- 2008-05-30T09:30:10+09:00. Note 1: If multiple contradicting
769
- instances of a gr:Offering, gr:PriceSpecification, or
770
- gr:OpeningHoursSpecification exist, it is a good heuristics to
771
- assume that 1. Information with validity information for the
772
- respective period of time ranks higher than information
773
- without validity information. 2. Among conflicting nodes both
774
- having validity information, the one with the shorter validity
775
- span ranks higher. Note 2: For Google, attaching a
776
- gr:validThrough statement to a gr:UnitPriceSpecification is
777
- mandatory.)
778
- property :valueAddedTaxIncluded, :label => 'value added tax included (0..1)', :comment =>
779
- %(This property specifies whether the applicable value-added tax
780
- \(VAT\) is included in the price of the gr:PriceSpecification
781
- or not. Note: This is a simple representation which may not
782
- properly reflect all details of local taxation.)
783
- property :acceptedPaymentMethods, :label => 'accepted payment methods (0..*)', :comment =>
784
- %(The gr:PaymentMethod or methods accepted by the
785
- gr:BusinessEntity for the given gr:Offering.)
786
- property :addOn, :label => 'add-on (0..*)', :comment =>
787
- %(This property points from a gr:Offering to additional
788
- offerings that can only be obtained in combination with the
789
- first offering. This can be used to model supplements and
790
- extensions that are available for a surcharge. Any
791
- gr:PriceSpecification attached to the secondary offering is to
792
- be understood as an additional charge.)
793
- property :advanceBookingRequirement, :label => 'advance booking requirement (0..1)', :comment =>
794
- %(The minimal and maximal amount of time that is required
795
- between accepting the gr:Offering and the actual usage of the
796
- resource or service. This is mostly relevant for offers
797
- regarding hotel rooms, the rental of objects, or the
798
- provisioning of services. The duration is specified relatively
799
- to the beginning of the usage of the contracted object. It is
800
- represented by attaching an instance of the class
801
- gr:QuantitativeValueInteger. The lower and upper boundaries
802
- are specified using the properties gr:hasMinValueInteger and
803
- gr:hasMaxValueInteger to that instance. The unit of
804
- measurement is specified using the property
805
- gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code
806
- suitable for durations, e.g. MON \(months\), DAY \(days\), HUR
807
- \(hours\), or MIN \(minutes\). The difference to the
808
- gr:validFrom and gr:validThrough properties is that those
809
- specify the interval during which the gr:Offering is valid,
810
- while gr:advanceBookingRequirement specifies the acceptable
811
- relative amount of time between accepting the offer and the
812
- fulfilment or usage.)
813
- property :appliesToDeliveryMethod, :label => 'applies to delivery method (0..*)', :comment =>
814
- %(This property specifies the gr:DeliveryMethod to which the
815
- gr:DeliveryChargeSpecification applies.)
816
- property :appliesToPaymentMethod, :label => 'applies to payment method (1..*)', :comment =>
817
- %(This property specifies the gr:PaymentMethod to which the
818
- gr:PaymentChargeSpecification applies.)
819
- property :availableAtOrFrom, :label => 'available at or from (0..*)', :comment =>
820
- %(This states that a particular gr:Offering is available at or
821
- from the given gr:Location \(e.g. shop or branch\).)
822
- property :availableDeliveryMethods, :label => 'available delivery methods (0..*)', :comment =>
823
- %(This specifies the gr:DeliveryMethod or methods available for
824
- a given gr:Offering.)
825
- property :deliveryLeadTime, :label => 'delivery lead time (0..1)', :comment =>
826
- %(This property can be used to indicate the promised delay
827
- between the receipt of the order and the goods leaving the
828
- warehouse. The duration is specified by attaching an instance
829
- of gr:QuantitativeValueInteger. The lower and upper boundaries
830
- are specified using the properties gr:hasMinValueInteger and
831
- gr:hasMaxValueInteger to that instance. A point value can be
832
- modeled with the gr:hasValueInteger property. The unit of
833
- measurement is specified using the property
834
- gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code
835
- suitable for durations, e.g. MON \(months\), DAY \(days\), HUR
836
- \(hours\), or MIN \(minutes\).)
837
- property :depth, :label => 'depth (0..1)', :comment =>
838
- %(The depth of the product. Typical unit code\(s\): CMT for
839
- centimeters, INH for inches)
840
- property :eligibleCustomerTypes, :label => 'eligible customer types (0..*)', :comment =>
841
- %(The types of customers \(gr:BusinessEntityType\) for which the
842
- given gr:Offering is valid.)
843
- property :eligibleDuration, :label => 'eligible duration (0..1)', :comment =>
844
- %(The minimal and maximal duration for which the given
845
- gr:Offering or gr:License is valid. This is mostly used for
846
- offers regarding accommodation, the rental of objects, or
847
- software licenses. The duration is specified by attaching an
848
- instance of gr:QuantitativeValue. The lower and upper
849
- boundaries are specified using the properties gr:hasMinValue
850
- and gr:hasMaxValue to that instance. If they are the same, use
851
- the gr:hasValue property. The unit of measurement is specified
852
- using the property gr:hasUnitOfMeasurement with a string
853
- holding a UN/CEFACT code suitable for durations, e.g. MON
854
- \(months\), DAY \(days\), HUR \(hours\), or MIN \(minutes\).
855
- The difference to the gr:validFrom and gr:validThrough
856
- properties is that those specify the absiolute interval during
857
- which the gr:Offering or gr:License is valid, while
858
- gr:eligibleDuration specifies the acceptable duration of the
859
- contract or usage.)
860
- property :eligibleTransactionVolume, :label => 'eligible transaction volume (0..1)', :comment =>
861
- %(This property can be used to indicate the transaction volume,
862
- in a monetary unit, for which the gr:Offering or
863
- gr:PriceSpecification is valid. This is mostly used to specify
864
- a minimal purchasing volume, to express free shipping above a
865
- certain order volume, or to limit the acceptance of credit
866
- cards to purchases above a certain amount. The object is a
867
- gr:PriceSpecification that uses the properties
868
- gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue to indicate
869
- the lower and upper boundaries and gr:hasCurrency to indicate
870
- the currency using the ISO 4217 standard \(3 characters\).)
871
- property :equal, :label => 'equal (0..*)', :comment =>
872
- %(This ordering relation for qualitative values indicates that
873
- the subject is equal to the object.)
874
- property :greater, :label => 'greater (0..*)', :comment =>
875
- %(This ordering relation for qualitative values indicates that
876
- the subject is greater than the object.)
877
- property :greaterOrEqual, :label => 'greater or equal (0..*)', :comment =>
878
- %(This ordering relation for qualitative values indicates that
879
- the subject is greater than or equal to the object.)
880
- property :hasPOS, :label => 'has POS (0..*)', :comment =>
881
- %(This property states that the respective gr:Location is a
882
- point of sale for the respective gr:BusinessEntity. It allows
883
- linking those two types of entities without the need for a
884
- particular gr:Offering.)
885
- property :hasBrand, :label => 'has brand (0..*)', :comment =>
886
- %(This specifies the brand or brands \(gr:Brand\) associated
887
- with a gr:ProductOrService, or the brand or brands maintained
888
- by a gr:BusinessEntity.)
889
- property :hasBusinessFunction, :label => 'has business function (1..*)', :comment =>
890
- %(This specifies the business function of the gr:Offering, i.e.
891
- whether the gr:BusinessEntity is offering to sell, to lease,
892
- or to repair the particular type of product. In the case of
893
- bundles, it is also possible to attach individual business
894
- functions to each gr:TypeAndQuantityNode. The business
895
- function of the main gr:Offering determines the business
896
- function for all included objects or services, unless a
897
- business function attached to a gr:TypeAndQuantityNode
898
- overrides it. Note: While it is possible that an entity is
899
- offering multiple types of business functions for the same set
900
- of objects \(e.g. rental and sales\), this should usually not
901
- be stated by attaching multiple business functions to the same
902
- gr:Offering, since the gr:UnitPriceSpecification for the
903
- varying business functions will typically be very different.)
904
- property :hasEligibleQuantity, :label => 'has eligible quantity (0..1)', :comment =>
905
- %(This specifies the interval and unit of measurement of
906
- ordering quantities for which the gr:Offering or
907
- gr:PriceSpecification is valid. This allows e.g. specifying
908
- that a certain freight charge is valid only for a certain
909
- quantity. Note that if an offering is a bundle, i.e. it
910
- consists of more than one unit of a single type of good, or if
911
- the unit of measurement for the good is different from unit
912
- \(Common Code C62\), then gr:hasEligibleQuantity refers to
913
- units of this bundle. In other words, "C62" for "Units or
914
- pieces" is usually the appropriate unit of measurement.)
915
- property :hasInventoryLevel, :label => 'has inventory level (0..1)', :comment =>
916
- %(This property specifies the current approximate inventory
917
- level for gr:SomeItems. The unit of measurement and the point
918
- value or interval are indicated using the attached
919
- gr:QuantitativeValueFloat instance. This property can also be
920
- attached to a gr:Offering in cases where the included products
921
- are not modeled in more detail.)
922
- property :hasMakeAndModel, :label => 'has make and model (0..1)', :comment =>
923
- %(This states that an actual product instance \(gr:Individual\)
924
- or a placeholder instance for multiple, unidentified such
925
- instances \(gr:SomeItems\) is one occurence of a particular
926
- gr:ProductOrServiceModel. Example: myFordT hasMakeAndModel
927
- FordT.)
928
- property :hasManufacturer, :label => 'has manufacturer (0..1)', :comment =>
929
- %(This object property links a gr:ProductOrService to the
930
- gr:BusinessEntity that produces it. Mostly used with
931
- gr:ProductOrServiceModel.)
932
- property :hasNext, :label => 'has next (0..1)', :comment =>
933
- %(This ordering relation for gr:DayOfWeek indicates that the
934
- subject is directly followed by the object. Example: Monday
935
- hasNext Tuesday Since days of the week are a cycle, this
936
- property is not transitive.)
937
- property :hasOpeningHoursDayOfWeek, :label => 'has opening hours day of week (1..*)', :comment =>
938
- %(This specifies the gr:DayOfWeek to which the
939
- gr:OpeningHoursSpecification is related. Note: Use multiple
940
- instances of gr:OpeningHoursSpecification for specifying the
941
- opening hours for multiple days if the opening hours differ.)
942
- property :hasOpeningHoursSpecification, :label => 'has opening hours specification (0..*)', :comment =>
943
- %(This property links a gr:Location to a
944
- gr:OpeningHoursSpecification.)
945
- property :hasPrevious, :label => 'has previous (0..1)', :comment =>
946
- %(This ordering relation for gr:DayOfWeek indicates that the
947
- subject is directly preceeded by the object. Example: Tuesday
948
- hasPrevious Monday Since days of the week are a cycle, this
949
- property is not transitive.)
950
- property :hasPriceSpecification, :label => 'has price specification (0..*)', :comment =>
951
- %(This links a gr:Offering to a gr:PriceSpecification or
952
- specifications. There can be unit price specifications,
953
- payment charge specifications, and delivery charge
954
- specifications. For each type, multiple specifications for the
955
- same gr:Offering are possible, e.g. for different quantity
956
- ranges or for different currencies, or for different
957
- combinations of gr:DeliveryMethod and target destinations.
958
- Recommended retail prices etc. can be marked by the
959
- gr:priceType property of the gr:UnitPriceSpecification.)
960
- property :hasWarrantyPromise, :label => 'has warranty promise (0..*)', :comment =>
961
- %(This specifies the gr:WarrantyPromise made by the
962
- gr:BusinessEntity for the given gr:Offering.)
963
- property :hasWarrantyScope, :label => 'has warranty scope (0..1)', :comment =>
964
- %(This states the gr:WarrantyScope of a given
965
- gr:WarrantyPromise.)
966
- property :height, :label => 'height (0..1)', :comment =>
967
- %(The height of the product. Typical unit code\(s\): CMT for
968
- centimeters, INH for inches)
969
- property :includes, :label => 'includes (0..1)', :comment =>
970
- %(This object property is a shortcut for the original
971
- gr:includesObject property for the common case of having
972
- exactly one single gr:ProductOrService instance included in an
973
- Offering. When linking to an instance of gr:SomeItems or
974
- gr:Individual, it is equivalent to using a
975
- gr:TypeAndQuantityNode with
976
- gr:hasUnitOfMeasurement="C62"^^xsd:string and
977
- gr:amountOfThisGood="1.0"^^xsd:float for that good. When
978
- linking to a gr:ProductOrServiceModel, it is equivalent to 1.
979
- defining an blank node for a gr:SomeItems 2. linking that
980
- blank node via gr:hasMakeAndModel to the
981
- gr:ProductOrServiceModel, and 3. linking from the gr:Offering
982
- to that blank node using another blank node of type
983
- gr:TypeAndQuantityNode with
984
- gr:hasUnitOfMeasurement="C62"^^xsd:string and
985
- gr:amountOfThisGood="1.0"^^xsd:float for that good.)
986
- property :includesObject, :label => 'includes object (0..*)', :comment =>
987
- %(This object property links a gr:Offering to one or multiple
988
- gr:TypeAndQuantityNode or nodes that specify the components
989
- that are included in the respective offer.)
990
- property :isAccessoryOrSparePartFor, :label => 'is accessory or spare part for (0..*)', :comment =>
991
- %(This states that a particular gr:ProductOrService is an
992
- accessory or spare part for another product or service.)
993
- property :isConsumableFor, :label => 'is consumable for (0..*)', :comment =>
994
- %(This states that a particular gr:ProductOrService is a
995
- consumable for another product or service.)
996
- property :isSimilarTo, :label => 'is similar to (0..*)', :comment =>
997
- %(This states that a given gr:ProductOrService is similar to
998
- another product or service. Of course, this is a subjective
999
- statement; when interpreting it, the trust in the origin of
1000
- the statement should be taken into account.)
1001
- property :isVariantOf, :label => 'is variant of (0..1)', :comment =>
1002
- %(This states that a particular gr:ProductOrServiceModel is a
1003
- variant of another product or service model. It is pretty safe
1004
- to infer that the variant inherits all
1005
- gr:quantitativeProductOrServiceProperty,
1006
- gr:qualitativeProductOrServiceProperty, and
1007
- gr:datatypeProductOrServiceProperty values that are defined
1008
- for the first gr:ProductOrServiceModel. Example:
1009
- foo:Red_Ford_T_Model gr:isVariantOf foo:Ford_T_Model)
1010
- property :lesser, :label => 'lesser (0..*)', :comment =>
1011
- %(This ordering relation for gr:QualitativeValue pairs indicates
1012
- that the subject is lesser than the object.)
1013
- property :lesserOrEqual, :label => 'lesser or equal (0..*)', :comment =>
1014
- %(This ordering relation for gr:QualitativeValue pairs indicates
1015
- that the subject is lesser than or equal to the object.)
1016
- property :nonEqual, :label => 'non equal (0..*)', :comment =>
1017
- %(This ordering relation for gr:QualitativeValue pairs indicates
1018
- that the subject is not equal to the object.)
1019
- property :offers, :label => 'offers (0..*)', :comment =>
1020
- %(This links a gr:BusinessEntity to the offers \(gr:Offering\)
1021
- it makes. If you want to express interest in receiving offers,
1022
- use gr:seeks instead.)
1023
- property :owns, :label => 'owns (0..*)', :comment =>
1024
- %(This property indicates that a particular person or business
1025
- owns a particular product. It can be used to expose the
1026
- products in one's posession in order to empower recommender
1027
- systems to suggest matching offers. Note that the product must
1028
- be an instance of the class gr:Individual. This property can
1029
- also be safely applied to foaf:Agent instances.)
1030
- property :predecessorOf, :label => 'predecessor of (0..*)', :comment =>
1031
- %(This property indicates that the subject is a previous, often
1032
- discontinued variant of the gr:ProductOrServiceModel used as
1033
- the object. Example: Golf III predecessorOf Golf IV This
1034
- relation is transitive.)
1035
- property :qualitativeProductOrServiceProperty, :label => 'qualitative product or service property (0..*)', :comment =>
1036
- %(This is the super property of all qualitative properties for
1037
- products and services. All properties in product or service
1038
- ontologies for which gr:QualitativeValue instances are
1039
- specified are subproperties of this property.)
1040
- property :quantitativeProductOrServiceProperty, :label => 'quantitative product or service property (0..*)', :comment =>
1041
- %(This is the super property of all quantitative properties for
1042
- products and services. All properties in product or service
1043
- ontologies that specify quantitative characteristics, for
1044
- which an interval is at least theoretically an appropriate
1045
- value, are subproperties of this property.)
1046
- property :seeks, :label => 'seeks (0..*)', :comment =>
1047
- %(This links a gr:BusinessEntity to gr:Offering nodes that
1048
- describe what the business entity is interested in \(i.e., the
1049
- buy side\). If you want to express interest in offering
1050
- something, use gr:offers instead. Note that this substitutes
1051
- the former gr:BusinessFunction gr:Buy, which is now
1052
- deprecated.)
1053
- property :successorOf, :label => 'successor of (0..*)', :comment =>
1054
- %(This property indicates that the subject is a newer, often
1055
- updated or improved variant of the gr:ProductOrServiceModel
1056
- used as the object. Example: Golf III successorOf Golf II This
1057
- relation is transitive.)
1058
- property :typeOfGood, :label => 'type of good (1..1)', :comment =>
1059
- %(This specifies the gr:ProductOrService that the
1060
- gr:TypeAndQuantityNode is referring to.)
1061
- property :valueReference, :label => 'value reference (0..*)', :comment =>
1062
- %(The superclass of properties that link a gr:QuantitativeValue
1063
- or a gr:QualitativeValue to a second gr:QuantitativeValue or a
1064
- gr:QualitativeValue that provides additional information on
1065
- the original value. A good modeling practice is to define
1066
- specializations of this property \(e.g.
1067
- foo:referenceTemperature\) for your particular domain.)
1068
- property :weight, :label => 'weight (0..1)', :comment =>
1069
- %(The weight of the gr:ProductOrService. Typical unit code\(s\):
1070
- GRM for gram, KGM for kilogram, LBR for pound)
1071
- property :width, :label => 'width (0..1)', :comment =>
1072
- %(The width of the gr:ProductOrService. Typical unit code\(s\):
1073
- CMT for centimeters, INH for inches)
1074
- property :displayPosition, :label => 'display position (0..1)', :comment =>
1075
- %(The position at which the option or element should be listed
1076
- in a menu or user dialog, lower numbers come first. The main
1077
- usage of this property are the days of the week
1078
- \(gr:DayOfWeek\), but it is also possible to apply it e.g. to
1079
- product features or any other conceptual element. Note: Rely
1080
- on this property only for data originating from a single RDF
1081
- graph; otherwise, unpredictable results are possible.)
1082
- property :relatedWebService, :label => 'related Web Service (0..*)', :comment =>
1083
- %(The URI of a SOAP or REST Web Service from which additional
1084
- information about the gr:BusinessEntity, gr:Offering,
1085
- gr:PriceSpecification, or gr:ProductOrService, or any other
1086
- element, can be obtained. The recommended range is xsd:anyURI
1087
- i.e., the URI of a SOAP or REST Web Service. In principle, any
1088
- existing or upcoming vocabulary for Web Services can be used
1089
- in combination with GoodRelations, because the association
1090
- between \(a\) the service description and \(b\) the
1091
- GoodRelations description can be found via the Web Service URI
1092
- value used with this gr:relatedWebService property.)
359
+ property :acceptedPaymentMethods,
360
+ comment: %(The gr:PaymentMethod or methods accepted by the gr:BusinessEntity for the given gr:Offering.).freeze,
361
+ domain: "_:g2172062380".freeze,
362
+ label: "accepted payment methods (0..*)".freeze,
363
+ range: "gr:PaymentMethod".freeze,
364
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
365
+ type: "owl:ObjectProperty".freeze
366
+ property :addOn,
367
+ comment: %(This property points from a gr:Offering to additional offerings that can only be obtained in combination with the first offering. This can be used to model supplements and extensions that are available for a surcharge. Any gr:PriceSpecification attached to the secondary offering is to be understood as an additional charge.).freeze,
368
+ domain: "_:g2176962200".freeze,
369
+ label: "add-on (0..*)".freeze,
370
+ range: "gr:Offering".freeze,
371
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
372
+ type: "owl:ObjectProperty".freeze
373
+ property :advanceBookingRequirement,
374
+ comment: %(The minimal and maximal amount of time that is required between accepting the gr:Offering and the actual usage of the resource or service. This is mostly relevant for offers regarding hotel rooms, the rental of objects, or the provisioning of services. The duration is specified relatively to the beginning of the usage of the contracted object. It is represented by attaching an instance of the class gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON \(months\), DAY \(days\), HUR \(hours\), or MIN \(minutes\).
375
+
376
+ The difference to the gr:validFrom and gr:validThrough properties is that those specify the interval during which the gr:Offering is valid, while gr:advanceBookingRequirement specifies the acceptable relative amount of time between accepting the offer and the fulfilment or usage.).freeze,
377
+ domain: "_:g2172526500".freeze,
378
+ label: "advance booking requirement (0..1)".freeze,
379
+ range: "gr:QuantitativeValueInteger".freeze,
380
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
381
+ type: "owl:ObjectProperty".freeze
382
+ property :amountOfThisGood,
383
+ comment: %(This property specifies the quantity of the goods included in the gr:Offering via this gr:TypeAndQuantityNode. The quantity is given in the unit of measurement attached to the gr:TypeAndQuantityNode.).freeze,
384
+ domain: "gr:TypeAndQuantityNode".freeze,
385
+ label: "amount of this good (1..1)".freeze,
386
+ range: "xsd:float".freeze,
387
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
388
+ type: "owl:DatatypeProperty".freeze
389
+ property :appliesToDeliveryMethod,
390
+ comment: %(This property specifies the gr:DeliveryMethod to which the gr:DeliveryChargeSpecification applies.).freeze,
391
+ domain: "gr:DeliveryChargeSpecification".freeze,
392
+ label: "applies to delivery method (0..*)".freeze,
393
+ range: "gr:DeliveryMethod".freeze,
394
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
395
+ type: "owl:ObjectProperty".freeze
396
+ property :appliesToPaymentMethod,
397
+ comment: %(This property specifies the gr:PaymentMethod to which the gr:PaymentChargeSpecification applies.).freeze,
398
+ domain: "gr:PaymentChargeSpecification".freeze,
399
+ label: "applies to payment method (1..*)".freeze,
400
+ range: "gr:PaymentMethod".freeze,
401
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
402
+ type: "owl:ObjectProperty".freeze
403
+ property :availabilityEnds,
404
+ comment: %(This property specifies the end of the availability of the gr:ProductOrService included in the gr:Offering.
405
+ The difference to the properties gr:validFrom and gr:validThrough is that those specify the period of time during which the offer is valid and can be accepted.
406
+
407
+ Example: I offer to lease my boat for the period of August 1 - August 31, 2010, but you must accept by offer no later than July 15.
408
+
409
+ A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time:
410
+
411
+ 2008-05-30T09:30:10Z.
412
+
413
+ Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
414
+
415
+ 2008-05-30T09:30:10-09:00
416
+
417
+ or
418
+
419
+ 2008-05-30T09:30:10+09:00.
420
+
421
+ Note: There is another property gr:availableAtOrFrom, which is used to indicate the gr:Location \(e.g. store or shop\) from which the goods would be available.).freeze,
422
+ domain: "_:g2170140980".freeze,
423
+ label: "availability ends (0..1)".freeze,
424
+ range: "xsd:dateTime".freeze,
425
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
426
+ type: "owl:DatatypeProperty".freeze
427
+ property :availabilityStarts,
428
+ comment: %(This property specifies the beginning of the availability of the gr:ProductOrService included in the gr:Offering.
429
+ The difference to the properties gr:validFrom and gr:validThrough is that those specify the period of time during which the offer is valid and can be accepted.
430
+
431
+ Example: I offer to lease my boat for the period of August 1 - August 31, 2010, but you must accept by offer no later than July 15.
432
+
433
+ A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time:
434
+
435
+ 2008-05-30T09:30:10Z.
436
+
437
+ Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
438
+
439
+ 2008-05-30T09:30:10-09:00
440
+
441
+ or
442
+
443
+ 2008-05-30T09:30:10+09:00.
444
+
445
+ Note: There is another property gr:availableAtOrFrom, which is used to indicate the gr:Location \(e.g. store or shop\) from which the goods would be available.).freeze,
446
+ domain: "_:g2177273360".freeze,
447
+ label: "availability starts (0..1)".freeze,
448
+ range: "xsd:dateTime".freeze,
449
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
450
+ type: "owl:DatatypeProperty".freeze
451
+ property :availableAtOrFrom,
452
+ comment: %(This states that a particular gr:Offering is available at or from the given gr:Location \(e.g. shop or branch\).).freeze,
453
+ domain: "_:g2176979660".freeze,
454
+ label: "available at or from (0..*)".freeze,
455
+ range: "gr:Location".freeze,
456
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
457
+ type: "owl:ObjectProperty".freeze
458
+ property :availableDeliveryMethods,
459
+ comment: %(This specifies the gr:DeliveryMethod or methods available for a given gr:Offering.).freeze,
460
+ domain: "_:g2172427120".freeze,
461
+ label: "available delivery methods (0..*)".freeze,
462
+ range: "gr:DeliveryMethod".freeze,
463
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
464
+ type: "owl:ObjectProperty".freeze
465
+ property :billingIncrement,
466
+ comment: %(This property specifies the minimal quantity and rounding increment that will be the basis for the billing.
467
+ The unit of measurement is specified by the UN/CEFACT code attached to the gr:UnitPriceSpecification via the gr:hasUnitOfMeasurement property.
468
+
469
+ Examples:
470
+ - The price for gasoline is 4 USD per gallon at the pump, but you will be charged in units of 0.1 gallons.
471
+ - The price for legal consulting is 100 USD per hour, but you will be charged in units of 15 minutes.
472
+
473
+ This property makes sense only for instances of gr:Offering that include not more than one type of good or service.).freeze,
474
+ domain: "gr:UnitPriceSpecification".freeze,
475
+ label: "billing increment (0..1)".freeze,
476
+ range: "xsd:float".freeze,
477
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
478
+ type: "owl:DatatypeProperty".freeze
479
+ property :category,
480
+ comment: %(The name of a category to which this gr:ProductOrService, gr:Offering, gr:BusinessEntity, or gr:Location belongs.
481
+
482
+ Note 1: For products, it is better to add an rdf:type statement referring to a GoodRelations-compliant ontology for vertical industries instead, but if you just have a short text label, gr:category is simpler.
483
+ Note 2: You can use greater signs or slashes to informally indicate a category hierarchy, e.g. "restaurants/asian_restaurants" or "cables > usb_cables"
484
+ ).freeze,
485
+ domain: "_:g2170826280".freeze,
486
+ label: "category (0..*)".freeze,
487
+ range: "rdfs:Literal".freeze,
488
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
489
+ type: "owl:DatatypeProperty".freeze
490
+ property :closes,
491
+ comment: %(The closing hour of the gr:Location on the given gr:DayOfWeek.
492
+ If no time-zone suffix is included, the time is given in the local time valid at the gr:Location.
493
+
494
+ For a time in GMT/UTC, simply add a "Z" following the time:
495
+
496
+ 09:30:10Z.
497
+
498
+ Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
499
+
500
+ 09:30:10-09:00
501
+
502
+ 09:30:10+09:00.
503
+
504
+ Note 1: Use 00:00:00 for the first second of the respective day and 23:59:59 for the last second of that day.
505
+ Note 2: If a store opens at 17:00 on Saturdays and closes at 03:00:00 a.m. next morning, use two instances of this class, one with 17:00:00 - 23:59:59 for Saturday and another one with 00:00:00 - 03:00:00 for Sunday.
506
+ Note 3: If the shop re-opens on the same day of the week or set of days of the week, you must create a second instance of gr:OpeningHoursSpecification.).freeze,
507
+ domain: "gr:OpeningHoursSpecification".freeze,
508
+ label: "closes (1..1)".freeze,
509
+ range: "xsd:time".freeze,
510
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
511
+ type: "owl:DatatypeProperty".freeze
512
+ property :color,
513
+ comment: %(The color of the product.).freeze,
514
+ domain: "_:g2178205740".freeze,
515
+ label: "color (0..1)".freeze,
516
+ range: "rdfs:Literal".freeze,
517
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
518
+ subPropertyOf: "gr:datatypeProductOrServiceProperty".freeze,
519
+ type: "owl:DatatypeProperty".freeze
520
+ property :condition,
521
+ comment: %(A textual description of the condition of the product or service, or the products or services included in the offer \(when attached to a gr:Offering\)).freeze,
522
+ domain: "_:g2156343640".freeze,
523
+ label: "condition (0..1)".freeze,
524
+ range: "rdfs:Literal".freeze,
525
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
526
+ type: "owl:DatatypeProperty".freeze
527
+ property :datatypeProductOrServiceProperty,
528
+ comment: %(This property is the super property for all pure datatype properties that can be used to describe a gr:ProductOrService.
529
+
530
+ In products and services ontologies, only such properties that are no quantitative properties and that have no predefined gr:QualitativeValue instances are subproperties of this property. In practice, this refers to a few integer properties for which the integer value represents qualitative aspects, for string datatypes \(as long as no predefined values exist\), for boolean datatype properties, and for dates and times.).freeze,
531
+ domain: "_:g2178031160".freeze,
532
+ label: "datatype product or service property (0..*)".freeze,
533
+ range: "rdfs:Literal".freeze,
534
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
535
+ type: "owl:DatatypeProperty".freeze
536
+ property :deliveryLeadTime,
537
+ comment: %(This property can be used to indicate the promised delay between the receipt of the order and the goods leaving the warehouse.
538
+
539
+ The duration is specified by attaching an instance of gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. A point value can be modeled with the gr:hasValueInteger property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON \(months\), DAY \(days\), HUR \(hours\), or MIN \(minutes\).).freeze,
540
+ domain: "_:g2177276460".freeze,
541
+ label: "delivery lead time (0..1)".freeze,
542
+ range: "gr:QuantitativeValueInteger".freeze,
543
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
544
+ type: "owl:ObjectProperty".freeze
545
+ property :depth,
546
+ comment: %(The depth of the product.
547
+ Typical unit code\(s\): CMT for centimeters, INH for inches).freeze,
548
+ domain: "_:g2171357240".freeze,
549
+ label: "depth (0..1)".freeze,
550
+ range: "gr:QuantitativeValue".freeze,
551
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
552
+ subPropertyOf: "gr:quantitativeProductOrServiceProperty".freeze,
553
+ type: "owl:ObjectProperty".freeze
554
+ property :description,
555
+ comment: %(A short textual description of the resource.
556
+
557
+ This property is semantically equivalent to rdfs:comment and just meant as a handy shortcut for marking up data.).freeze,
558
+ domain: "_:g2170338020".freeze,
559
+ label: "description (0..1)".freeze,
560
+ range: "rdfs:Literal".freeze,
561
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
562
+ type: "owl:DatatypeProperty".freeze
563
+ property :displayPosition,
564
+ comment: %(The position at which the option or element should be listed in a menu or user dialog, lower numbers come first.
565
+
566
+ 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.
567
+ Note: Rely on this property only for data originating from a single RDF graph; otherwise, unpredictable results are possible.).freeze,
568
+ label: "display position (0..1)".freeze,
569
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
570
+ type: "owl:AnnotationProperty".freeze
571
+ property :durationOfWarrantyInMonths,
572
+ comment: %(This property specifies the duration of the gr:WarrantyPromise in months.).freeze,
573
+ domain: "gr:WarrantyPromise".freeze,
574
+ label: "duration of warranty in months (0..1)".freeze,
575
+ range: "xsd:int".freeze,
576
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
577
+ type: "owl:DatatypeProperty".freeze
578
+ property :eligibleCustomerTypes,
579
+ comment: %(The types of customers \(gr:BusinessEntityType\) for which the given gr:Offering is valid.).freeze,
580
+ domain: "_:g2169968240".freeze,
581
+ label: "eligible customer types (0..*)".freeze,
582
+ range: "gr:BusinessEntityType".freeze,
583
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
584
+ type: "owl:ObjectProperty".freeze
585
+ property :eligibleDuration,
586
+ comment: %(The minimal and maximal duration for which the given gr:Offering or gr:License is valid. This is mostly used for offers regarding accommodation, the rental of objects, or software licenses. The duration is specified by attaching an instance of gr:QuantitativeValue. The lower and upper boundaries are specified using the properties gr:hasMinValue and gr:hasMaxValue to that instance. If they are the same, use the gr:hasValue property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON \(months\), DAY \(days\), HUR \(hours\), or MIN \(minutes\).
587
+
588
+ The difference to the gr:validFrom and gr:validThrough properties is that those specify the absiolute interval during which the gr:Offering or gr:License is valid, while gr:eligibleDuration specifies the acceptable duration of the contract or usage.).freeze,
589
+ domain: "_:g2169222340".freeze,
590
+ label: "eligible duration (0..1)".freeze,
591
+ range: "gr:QuantitativeValue".freeze,
592
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
593
+ type: "owl:ObjectProperty".freeze
594
+ property :eligibleRegions,
595
+ comment: %(This property specifies the geo-political region or regions for which the gr:Offering, gr:License, or gr:DeliveryChargeSpecification is valid using the two-character version of ISO 3166-1 \(ISO 3166-1 alpha-2\) for regions or ISO 3166-2 , which breaks down the countries from ISO 3166-1 into administrative subdivisions.
596
+
597
+ Important: Do NOT use 3-letter ISO 3166-1 codes!).freeze,
598
+ domain: "_:g2171041180".freeze,
599
+ label: "eligible regions (0..*)".freeze,
600
+ range: "xsd:string".freeze,
601
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
602
+ type: "owl:DatatypeProperty".freeze
603
+ property :eligibleTransactionVolume,
604
+ comment: %(This property can be used to indicate the transaction volume, in a monetary unit, for which the gr:Offering or gr:PriceSpecification is valid. This is mostly used to specify a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases above a certain amount.
605
+
606
+ The object is a gr:PriceSpecification that uses the properties gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue to indicate the lower and upper boundaries and gr:hasCurrency to indicate the currency using the ISO 4217 standard \(3 characters\).).freeze,
607
+ domain: "_:g2172409180".freeze,
608
+ label: "eligible transaction volume (0..1)".freeze,
609
+ range: "gr:PriceSpecification".freeze,
610
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
611
+ type: "owl:ObjectProperty".freeze
612
+ property :equal,
613
+ comment: %(This ordering relation for qualitative values indicates that the subject is equal to the object.).freeze,
614
+ domain: "gr:QualitativeValue".freeze,
615
+ label: "equal (0..*)".freeze,
616
+ "owl:inverseOf" => %(gr:equal).freeze,
617
+ range: "gr:QualitativeValue".freeze,
618
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
619
+ type: "owl:ObjectProperty".freeze
620
+ property :greater,
621
+ comment: %(This ordering relation for qualitative values indicates that the subject is greater than the object.).freeze,
622
+ domain: "gr:QualitativeValue".freeze,
623
+ label: "greater (0..*)".freeze,
624
+ "owl:inverseOf" => %(gr:lesser).freeze,
625
+ range: "gr:QualitativeValue".freeze,
626
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
627
+ type: "owl:ObjectProperty".freeze
628
+ property :greaterOrEqual,
629
+ comment: %(This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.).freeze,
630
+ domain: "gr:QualitativeValue".freeze,
631
+ label: "greater or equal (0..*)".freeze,
632
+ "owl:inverseOf" => %(gr:lesserOrEqual).freeze,
633
+ range: "gr:QualitativeValue".freeze,
634
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
635
+ type: "owl:ObjectProperty".freeze
636
+ property :hasBrand,
637
+ comment: %(This specifies the brand or brands \(gr:Brand\) associated with a gr:ProductOrService, or the brand or brands maintained by a gr:BusinessEntity.).freeze,
638
+ domain: "_:g2171584740".freeze,
639
+ label: "has brand (0..*)".freeze,
640
+ range: "gr:Brand".freeze,
641
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
642
+ type: "owl:ObjectProperty".freeze
643
+ property :hasBusinessFunction,
644
+ comment: %(This specifies the business function of the gr:Offering, i.e. whether the gr:BusinessEntity is offering to sell, to lease, or to repair the particular type of product. In the case of bundles, it is also possible to attach individual business functions to each gr:TypeAndQuantityNode. The business function of the main gr:Offering determines the business function for all included objects or services, unless a business function attached to a gr:TypeAndQuantityNode overrides it.
645
+
646
+ Note: While it is possible that an entity is offering multiple types of business functions for the same set of objects \(e.g. rental and sales\), this should usually not be stated by attaching multiple business functions to the same gr:Offering, since the gr:UnitPriceSpecification for the varying business functions will typically be very different.).freeze,
647
+ domain: "_:g2171902180".freeze,
648
+ label: "has business function (1..*)".freeze,
649
+ range: "gr:BusinessFunction".freeze,
650
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
651
+ type: "owl:ObjectProperty".freeze
652
+ property :hasCurrency,
653
+ comment: %(The currency for all prices in the gr:PriceSpecification given using the ISO 4217 standard \(3 characters\).).freeze,
654
+ domain: "gr:PriceSpecification".freeze,
655
+ label: "has currency (1..1)".freeze,
656
+ range: "xsd:string".freeze,
657
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
658
+ type: "owl:DatatypeProperty".freeze
659
+ property :hasCurrencyValue,
660
+ comment: %(This property specifies the amount of money for a price per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.
661
+
662
+ For a gr:UnitPriceSpecification, this is the price for one unit or bundle \(as specified in the unit of measurement of the unit price specification\) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the price per delivery or payment.
663
+
664
+ GoodRelations also supports giving price information as intervals only. If this is needed, use gr:hasMaxCurrencyValue for the upper bound and gr:hasMinCurrencyValue for the lower bound.
665
+
666
+ Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.).freeze,
667
+ domain: "gr:PriceSpecification".freeze,
668
+ label: "has currency value (0..1)".freeze,
669
+ range: "xsd:float".freeze,
670
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
671
+ subPropertyOf: "gr:hasMinCurrencyValue".freeze,
672
+ type: "owl:DatatypeProperty".freeze
673
+ property :hasDUNS,
674
+ comment: %(The Dun & Bradstreet DUNS number for identifying a gr:BusinessEntity. The Dun & Bradstreet DUNS is a nine-digit number used to identify legal entities \(but usually not branches or locations of logistical importance only\).).freeze,
675
+ domain: "_:g2177647120".freeze,
676
+ label: "has DUNS (0..1)".freeze,
677
+ range: "xsd:string".freeze,
678
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
679
+ type: "owl:DatatypeProperty".freeze
680
+ property :"hasEAN_UCC-13",
681
+ comment: %(The EAN·UCC-13 code of the given gr:ProductOrService or gr:Offering. This code is now officially called GTIN-13 \(Global Trade Identifier Number\) or EAN·UCC-13. Former 12-digit UPC codes can be converted into EAN·UCC-13 code by simply adding a preceeding zero.
682
+
683
+ Note 1: When using this property for searching by 12-digit UPC codes, you must add a preceeding zero digit.
684
+ Note 2: As of January 1, 2007, the former ISBN numbers for books etc. have been integrated into the EAN·UCC-13 code. For each old ISBN-10 code, there exists a proper translation into EAN·UCC-13 by adding "978" or "979" as prefix. Since the old ISBN-10 is now deprecated, GoodRelations does not provide a property for ISBNs.).freeze,
685
+ domain: "_:g2171255300".freeze,
686
+ label: "has EAN/UCC-13 (0..*)".freeze,
687
+ range: "xsd:string".freeze,
688
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
689
+ subPropertyOf: "schema:productID".freeze,
690
+ type: "owl:DatatypeProperty".freeze
691
+ property :hasEligibleQuantity,
692
+ comment: %(This specifies the interval and unit of measurement of ordering quantities for which the gr:Offering or gr:PriceSpecification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.
693
+ Note that if an offering is a bundle, i.e. it consists of more than one unit of a single type of good, or if the unit of measurement for the good is different from unit \(Common Code C62\), then gr:hasEligibleQuantity refers to units of this bundle. In other words, "C62" for "Units or pieces" is usually the appropriate unit of measurement.).freeze,
694
+ domain: "_:g2170003320".freeze,
695
+ label: "has eligible quantity (0..1)".freeze,
696
+ range: "gr:QuantitativeValue".freeze,
697
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
698
+ type: "owl:ObjectProperty".freeze
699
+ property :"hasGTIN-14",
700
+ comment: %(The Global Trade Item Number \(GTIN-14\) of the given gr:ProductOrService or gr:Offering.).freeze,
701
+ domain: "_:g2177932320".freeze,
702
+ label: "has GTIN-14 (0..*)".freeze,
703
+ range: "xsd:string".freeze,
704
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
705
+ subPropertyOf: "schema:productID".freeze,
706
+ type: "owl:DatatypeProperty".freeze
707
+ property :"hasGTIN-8",
708
+ comment: %(The 8-digit Global Trade Item Number \(GTIN-8\) of the given gr:ProductOrService or gr:Offering, also known as EAN/UCC-8 \(8-digit EAN\).).freeze,
709
+ domain: "_:g2171799280".freeze,
710
+ label: "has GTIN-8 (0..*)".freeze,
711
+ range: "xsd:string".freeze,
712
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
713
+ subPropertyOf: "schema:productID".freeze,
714
+ type: "owl:DatatypeProperty".freeze
715
+ property :hasGlobalLocationNumber,
716
+ comment: %(The Global Location Number \(GLN, sometimes also referred to as International Location Number or ILN\) of the respective gr:BusinessEntity or gr:Location.
717
+ The Global Location Number is a thirteen-digit number used to identify parties and physical locations.).freeze,
718
+ domain: "_:g2172051400".freeze,
719
+ label: "has Global Location Number (0..1)".freeze,
720
+ range: "xsd:string".freeze,
721
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
722
+ type: "owl:DatatypeProperty".freeze
723
+ property :hasISICv4,
724
+ comment: %(The International Standard of Industrial Classification of All Economic Activities \(ISIC\), Revision 4 code for a particular gr:BusinessEntity or gr:Location. See http://unstats.un.org/unsd/cr/registry/isic-4.asp for more information.
725
+
726
+ Note: While ISIC codes are sometimes misused for classifying products or services, they are designed and suited only for classifying business establishments.).freeze,
727
+ domain: "_:g2171804800".freeze,
728
+ label: "has ISIC v4 (0..*)".freeze,
729
+ range: "xsd:int".freeze,
730
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
731
+ type: "owl:DatatypeProperty".freeze
732
+ property :hasInventoryLevel,
733
+ 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.
734
+
735
+ This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail.).freeze,
736
+ domain: "_:g2169238840".freeze,
737
+ label: "has inventory level (0..1)".freeze,
738
+ range: "gr:QuantitativeValueFloat".freeze,
739
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
740
+ type: "owl:ObjectProperty".freeze
741
+ property :hasMPN,
742
+ comment: %(The Manufacturer Part Number or MPN is a unique identifier for a product, service, or bundle from the perspective of a particular manufacturer. MPNs can be assigned to products or product datasheets, or bundles. Accordingly, the domain of this property is the union of gr:ProductOrService \(the common superclass of goods and datasheets\), and gr:Offering.
743
+
744
+ Important: Be careful when assuming two products or services instances or offering instances to be identical based on the MPN. Since MPNs are unique only for the same gr:BusinessEntity, this holds only when the two MPN values refer to the same gr:BusinessEntity. Such can be done by taking into account the provenance of the data.
745
+
746
+ Usually, the properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more reliable identifiers, because they are globally unique.
747
+
748
+ See also http://en.wikipedia.org/wiki/Part_number).freeze,
749
+ domain: "_:g2171239660".freeze,
750
+ label: "has MPN (0..*)".freeze,
751
+ range: "xsd:string".freeze,
752
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
753
+ subPropertyOf: "schema:productID".freeze,
754
+ type: "owl:DatatypeProperty".freeze
755
+ property :hasMakeAndModel,
756
+ comment: %(This states that an actual product instance \(gr:Individual\) or a placeholder instance for multiple, unidentified such instances \(gr:SomeItems\) is one occurence of a particular gr:ProductOrServiceModel.
757
+
758
+ Example: myFordT hasMakeAndModel FordT.).freeze,
759
+ domain: "_:g2176928480".freeze,
760
+ label: "has make and model (0..1)".freeze,
761
+ range: "gr:ProductOrServiceModel".freeze,
762
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
763
+ type: "owl:ObjectProperty".freeze
764
+ property :hasManufacturer,
765
+ comment: %(This object property links a gr:ProductOrService to the gr:BusinessEntity that produces it. Mostly used with gr:ProductOrServiceModel.).freeze,
766
+ domain: "_:g2170729700".freeze,
767
+ label: "has manufacturer (0..1)".freeze,
768
+ range: "gr:BusinessEntity".freeze,
769
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
770
+ type: "owl:ObjectProperty".freeze
771
+ property :hasMaxCurrencyValue,
772
+ comment: %(This property specifies the UPPER BOUND of the amount of money for a price RANGE per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.
773
+ For a gr:UnitPriceSpecification, this is the UPPER BOUND for the price for one unit or bundle \(as specified in the unit of measurement of the unit price specification\) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the UPPER BOUND of the price per delivery or payment.
774
+
775
+ Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.).freeze,
776
+ domain: "gr:PriceSpecification".freeze,
777
+ label: "has max currency value (1..1)".freeze,
778
+ range: "xsd:float".freeze,
779
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
780
+ type: "owl:DatatypeProperty".freeze
781
+ property :hasMaxValue,
782
+ comment: %(This property captures the upper limit of a gr:QuantitativeValue instance.).freeze,
783
+ domain: "gr:QuantitativeValue".freeze,
784
+ label: "has max value (0..1)".freeze,
785
+ range: "rdfs:Literal".freeze,
786
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
787
+ type: "owl:DatatypeProperty".freeze
788
+ property :hasMaxValueFloat,
789
+ comment: %(This property captures the upper limit of a gr:QuantitativeValueFloat instance.).freeze,
790
+ domain: "gr:QuantitativeValueFloat".freeze,
791
+ label: "has max value float (1..1)".freeze,
792
+ range: "xsd:float".freeze,
793
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
794
+ subPropertyOf: "gr:hasMaxValue".freeze,
795
+ type: "owl:DatatypeProperty".freeze
796
+ property :hasMaxValueInteger,
797
+ comment: %(This property captures the upper limit of a gr:QuantitativeValueInteger instance.).freeze,
798
+ domain: "gr:QuantitativeValueInteger".freeze,
799
+ label: "has max value integer (1..1)".freeze,
800
+ range: "xsd:int".freeze,
801
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
802
+ subPropertyOf: "gr:hasMaxValue".freeze,
803
+ type: "owl:DatatypeProperty".freeze
804
+ property :hasMinCurrencyValue,
805
+ comment: %(This property specifies the LOWER BOUND of the amount of money for a price RANGE per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.
806
+ For a gr:UnitPriceSpecification, this is the LOWER BOUND for the price for one unit or bundle \(as specified in the unit of measurement of the unit price specification\) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the LOWER BOUND of the price per delivery or payment.
807
+
808
+ Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.).freeze,
809
+ domain: "gr:PriceSpecification".freeze,
810
+ label: "has min currency value (1..1)".freeze,
811
+ range: "xsd:float".freeze,
812
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
813
+ type: "owl:DatatypeProperty".freeze
814
+ property :hasMinValue,
815
+ comment: %(This property captures the lower limit of a gr:QuantitativeValue instance.).freeze,
816
+ domain: "gr:QuantitativeValue".freeze,
817
+ label: "has min value (0..1)".freeze,
818
+ range: "rdfs:Literal".freeze,
819
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
820
+ type: "owl:DatatypeProperty".freeze
821
+ property :hasMinValueFloat,
822
+ comment: %(This property captures the lower limit of a gr:QuantitativeValueFloat instance.).freeze,
823
+ domain: "gr:QuantitativeValueFloat".freeze,
824
+ label: "has min value float (1..1)".freeze,
825
+ range: "xsd:float".freeze,
826
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
827
+ subPropertyOf: "gr:hasMinValue".freeze,
828
+ type: "owl:DatatypeProperty".freeze
829
+ property :hasMinValueInteger,
830
+ comment: %(This property captures the lower limit of a gr:QuantitativeValueInteger instance.).freeze,
831
+ domain: "gr:QuantitativeValueInteger".freeze,
832
+ label: "has min value integer (1..1)".freeze,
833
+ range: "xsd:int".freeze,
834
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
835
+ subPropertyOf: "gr:hasMinValue".freeze,
836
+ type: "owl:DatatypeProperty".freeze
837
+ property :hasNAICS,
838
+ comment: %(The North American Industry Classification System \(NAICS\) code for a particular gr:BusinessEntity.
839
+ See http://www.census.gov/eos/www/naics/ for more details.
840
+
841
+ Note: While NAICS codes are sometimes misused for classifying products or services, they are designed and suited only for classifying business establishments.).freeze,
842
+ domain: "_:g2171585140".freeze,
843
+ label: "has NAICS (0..*)".freeze,
844
+ range: "xsd:int".freeze,
845
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
846
+ type: "owl:DatatypeProperty".freeze
847
+ property :hasNext,
848
+ comment: %(This ordering relation for gr:DayOfWeek indicates that the subject is directly followed by the object.
849
+
850
+ Example: Monday hasNext Tuesday
851
+
852
+ Since days of the week are a cycle, this property is not transitive.).freeze,
853
+ domain: "gr:DayOfWeek".freeze,
854
+ label: "has next (0..1)".freeze,
855
+ "owl:inverseOf" => %(gr:hasPrevious).freeze,
856
+ range: "gr:DayOfWeek".freeze,
857
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
858
+ type: "owl:ObjectProperty".freeze
859
+ property :hasOpeningHoursDayOfWeek,
860
+ comment: %(This specifies the gr:DayOfWeek to which the gr:OpeningHoursSpecification is related.
861
+
862
+ Note: Use multiple instances of gr:OpeningHoursSpecification for specifying the opening hours for multiple days if the opening hours differ.).freeze,
863
+ domain: "gr:OpeningHoursSpecification".freeze,
864
+ label: "has opening hours day of week (1..*)".freeze,
865
+ range: "gr:DayOfWeek".freeze,
866
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
867
+ type: "owl:ObjectProperty".freeze
868
+ property :hasOpeningHoursSpecification,
869
+ comment: %(This property links a gr:Location to a gr:OpeningHoursSpecification.).freeze,
870
+ domain: "_:g2178177100".freeze,
871
+ label: "has opening hours specification (0..*)".freeze,
872
+ range: "gr:OpeningHoursSpecification".freeze,
873
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
874
+ type: "owl:ObjectProperty".freeze
875
+ property :hasPOS,
876
+ comment: %(This property states that the respective gr:Location is a point of sale for the respective gr:BusinessEntity. It allows linking those two types of entities without the need for a particular gr:Offering.).freeze,
877
+ domain: "_:g2170382320".freeze,
878
+ label: "has POS (0..*)".freeze,
879
+ range: "gr:Location".freeze,
880
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
881
+ type: "owl:ObjectProperty".freeze
882
+ property :hasPrevious,
883
+ comment: %(This ordering relation for gr:DayOfWeek indicates that the subject is directly preceeded by the object.
884
+
885
+ Example: Tuesday hasPrevious Monday
886
+
887
+ Since days of the week are a cycle, this property is not transitive.).freeze,
888
+ domain: "gr:DayOfWeek".freeze,
889
+ label: "has previous (0..1)".freeze,
890
+ "owl:inverseOf" => %(gr:hasNext).freeze,
891
+ range: "gr:DayOfWeek".freeze,
892
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
893
+ type: "owl:ObjectProperty".freeze
894
+ property :hasPriceSpecification,
895
+ comment: %(This links a gr:Offering to a gr:PriceSpecification or specifications. There can be unit price specifications, payment charge specifications, and delivery charge specifications. For each type, multiple specifications for the same gr:Offering are possible, e.g. for different quantity ranges or for different currencies, or for different combinations of gr:DeliveryMethod and target destinations.
896
+
897
+ Recommended retail prices etc. can be marked by the gr:priceType property of the gr:UnitPriceSpecification.).freeze,
898
+ domain: "_:g2171590340".freeze,
899
+ label: "has price specification (0..*)".freeze,
900
+ range: "gr:PriceSpecification".freeze,
901
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
902
+ type: "owl:ObjectProperty".freeze
903
+ property :hasStockKeepingUnit,
904
+ comment: %(The Stock Keeping Unit, or SKU is a unique identifier for a product, service, or bundle from the perspective of a particular supplier, i.e. SKUs are mostly assigned and serialized at the merchant level.
905
+ Examples of SKUs are the ordering or parts numbers used by a particular Web shop or catalog.
906
+
907
+ Consequently, the domain of gr:hasStockKeepingUnit is the union of the classes gr:Offering and gr:ProductOrService.
908
+ If attached to a gr:Offering, the SKU will usually reflect a merchant-specific identifier, i.e. one valid only for that particular retailer or shop.
909
+ If attached to a gr:ProductOrServiceModel, the SKU can reflect either the identifier used by the merchant or the part number used by the official manufacturer of that part. For the latter, gr:hasMPN is a better choice.
910
+
911
+ Important: Be careful when assuming two products or services instances or offering instances to be identical based on the SKU. Since SKUs are unique only for the same gr:BusinessEntity, this can be assumed only when you are sure that the two SKU values refer to the same business entity. Such can be done by taking into account the provenance of the data. As long as instances of gr:Offering are concerned, you can also check that the offerings are being offered by the same gr:Business Entity.
912
+
913
+ Usually, the properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more reliable identifiers, because they are globally unique.
914
+
915
+ See also http://en.wikipedia.org/wiki/Stock_Keeping_Unit.).freeze,
916
+ domain: "_:g2177144740".freeze,
917
+ label: "has Stock Keeping Unit (0..*)".freeze,
918
+ range: "xsd:string".freeze,
919
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
920
+ subPropertyOf: "schema:productID".freeze,
921
+ type: "owl:DatatypeProperty".freeze
922
+ property :hasUnitOfMeasurement,
923
+ comment: %(The unit of measurement for a gr:QuantitativeValue, a gr:UnitPriceSpecification, or a gr:TypeAndQuantityNode given using the UN/CEFACT Common Code \(3 characters\).).freeze,
924
+ domain: "_:g2177386160".freeze,
925
+ label: "has unit of measurement (1..1)".freeze,
926
+ range: "xsd:string".freeze,
927
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
928
+ type: "owl:DatatypeProperty".freeze
929
+ property :hasValue,
930
+ comment: %(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.).freeze,
931
+ domain: "gr:QuantitativeValue".freeze,
932
+ label: "has value (0..1)".freeze,
933
+ range: "rdfs:Literal".freeze,
934
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
935
+ subPropertyOf: "gr:hasMaxValue".freeze,
936
+ type: "owl:DatatypeProperty".freeze
937
+ property :hasValueFloat,
938
+ comment: %(This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueFloat are identical and have the respective float value. It is a shortcut for such cases where a quantitative property is \(at least practically\) a single point value and not an interval.).freeze,
939
+ domain: "gr:QuantitativeValueFloat".freeze,
940
+ label: "has value float (0..1)".freeze,
941
+ range: "xsd:float".freeze,
942
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
943
+ subPropertyOf: "gr:hasMaxValueFloat".freeze,
944
+ type: "owl:DatatypeProperty".freeze
945
+ property :hasValueInteger,
946
+ comment: %(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.).freeze,
947
+ domain: "gr:QuantitativeValueInteger".freeze,
948
+ label: "has value integer (0..1)".freeze,
949
+ range: "xsd:int".freeze,
950
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
951
+ subPropertyOf: "gr:hasMinValueInteger".freeze,
952
+ type: "owl:DatatypeProperty".freeze
953
+ property :hasWarrantyPromise,
954
+ comment: %(This specifies the gr:WarrantyPromise made by the gr:BusinessEntity for the given gr:Offering.).freeze,
955
+ domain: "_:g2178106840".freeze,
956
+ label: "has warranty promise (0..*)".freeze,
957
+ range: "gr:WarrantyPromise".freeze,
958
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
959
+ type: "owl:ObjectProperty".freeze
960
+ property :hasWarrantyScope,
961
+ comment: %(This states the gr:WarrantyScope of a given gr:WarrantyPromise.).freeze,
962
+ domain: "gr:WarrantyPromise".freeze,
963
+ label: "has warranty scope (0..1)".freeze,
964
+ range: "gr:WarrantyScope".freeze,
965
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
966
+ type: "owl:ObjectProperty".freeze
967
+ property :height,
968
+ comment: %(The height of the product.
969
+ Typical unit code\(s\): CMT for centimeters, INH for inches).freeze,
970
+ domain: "_:g2170715340".freeze,
971
+ label: "height (0..1)".freeze,
972
+ range: "gr:QuantitativeValue".freeze,
973
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
974
+ subPropertyOf: "gr:quantitativeProductOrServiceProperty".freeze,
975
+ type: "owl:ObjectProperty".freeze
976
+ property :includes,
977
+ comment: %(This object property is a shortcut for the original gr:includesObject property for the common case of having exactly one single gr:ProductOrService instance included in an Offering.
978
+
979
+ When linking to an instance of gr:SomeItems or gr:Individual, it is equivalent to using a gr:TypeAndQuantityNode with gr:hasUnitOfMeasurement="C62"^^xsd:string and gr:amountOfThisGood="1.0"^^xsd:float for that good.
980
+
981
+ When linking to a gr:ProductOrServiceModel, it is equivalent to
982
+ 1. defining an blank node for a gr:SomeItems
983
+ 2. linking that blank node via gr:hasMakeAndModel to the gr:ProductOrServiceModel, and
984
+ 3. linking from the gr:Offering to that blank node using another blank node of type gr:TypeAndQuantityNode with gr:hasUnitOfMeasurement="C62"^^xsd:string and gr:amountOfThisGood="1.0"^^xsd:float for that good.).freeze,
985
+ domain: "gr:Offering".freeze,
986
+ label: "includes (0..1)".freeze,
987
+ range: "gr:ProductOrService".freeze,
988
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
989
+ type: "owl:ObjectProperty".freeze
990
+ property :includesObject,
991
+ comment: %(This object property links a gr:Offering to one or multiple gr:TypeAndQuantityNode or nodes that specify the components that are included in the respective offer.).freeze,
992
+ domain: "_:g2171440000".freeze,
993
+ label: "includes object (0..*)".freeze,
994
+ range: "gr:TypeAndQuantityNode".freeze,
995
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
996
+ type: "owl:ObjectProperty".freeze
997
+ property :isAccessoryOrSparePartFor,
998
+ comment: %(This states that a particular gr:ProductOrService is an accessory or spare part for another product or service.).freeze,
999
+ domain: "_:g2177883920".freeze,
1000
+ label: "is accessory or spare part for (0..*)".freeze,
1001
+ range: "gr:ProductOrService".freeze,
1002
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1003
+ type: "owl:ObjectProperty".freeze
1004
+ property :isConsumableFor,
1005
+ comment: %(This states that a particular gr:ProductOrService is a consumable for another product or service.).freeze,
1006
+ domain: "_:g2177519020".freeze,
1007
+ label: "is consumable for (0..*)".freeze,
1008
+ range: "gr:ProductOrService".freeze,
1009
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1010
+ type: "owl:ObjectProperty".freeze
1011
+ property :isListPrice,
1012
+ comment: %(This boolean attribute indicates whether a gr:UnitPriceSpecification is a list price \(usually a vendor recommendation\) or not. "true" indicates it is a list price, "false" indicates it is not.
1013
+ DEPRECATED. Use the gr:priceType property instead.).freeze,
1014
+ domain: "gr:UnitPriceSpecification".freeze,
1015
+ label: "is list price (DEPRECATED)".freeze,
1016
+ "owl:deprecated" => %(true).freeze,
1017
+ range: "xsd:boolean".freeze,
1018
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1019
+ type: "owl:DatatypeProperty".freeze
1020
+ property :isSimilarTo,
1021
+ comment: %(This states that a given gr:ProductOrService is similar to another product or service. Of course, this is a subjective statement; when interpreting it, the trust in the origin of the statement should be taken into account.).freeze,
1022
+ domain: "_:g2156356880".freeze,
1023
+ label: "is similar to (0..*)".freeze,
1024
+ range: "gr:ProductOrService".freeze,
1025
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1026
+ type: "owl:ObjectProperty".freeze
1027
+ property :isVariantOf,
1028
+ comment: %(This states that a particular gr:ProductOrServiceModel is a variant of another product or service model. It is pretty safe to infer that the variant inherits all gr:quantitativeProductOrServiceProperty, gr:qualitativeProductOrServiceProperty, and gr:datatypeProductOrServiceProperty values that are defined for the first gr:ProductOrServiceModel.
1029
+
1030
+ Example:
1031
+ foo:Red_Ford_T_Model gr:isVariantOf foo:Ford_T_Model).freeze,
1032
+ domain: "gr:ProductOrServiceModel".freeze,
1033
+ label: "is variant of (0..1)".freeze,
1034
+ range: "gr:ProductOrServiceModel".freeze,
1035
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1036
+ type: "owl:ObjectProperty".freeze
1037
+ property :legalName,
1038
+ comment: %(The legal name of the gr:BusinessEntity.).freeze,
1039
+ domain: "_:g2171438660".freeze,
1040
+ label: "legal name (0..1)".freeze,
1041
+ range: "rdfs:Literal".freeze,
1042
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1043
+ type: "owl:DatatypeProperty".freeze
1044
+ property :lesser,
1045
+ comment: %(This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than the object.).freeze,
1046
+ domain: "gr:QualitativeValue".freeze,
1047
+ label: "lesser (0..*)".freeze,
1048
+ "owl:inverseOf" => %(gr:greater).freeze,
1049
+ range: "gr:QualitativeValue".freeze,
1050
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1051
+ type: "owl:ObjectProperty".freeze
1052
+ property :lesserOrEqual,
1053
+ comment: %(This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than or equal to the object.).freeze,
1054
+ domain: "gr:QualitativeValue".freeze,
1055
+ label: "lesser or equal (0..*)".freeze,
1056
+ "owl:inverseOf" => %(gr:greaterOrEqual).freeze,
1057
+ range: "gr:QualitativeValue".freeze,
1058
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1059
+ type: "owl:ObjectProperty".freeze
1060
+ property :name,
1061
+ comment: %(A short text describing the respective resource.
1062
+
1063
+ This property is semantically equivalent to dcterms:title and rdfs:label and just meant as a handy shortcut for marking up data.).freeze,
1064
+ domain: "_:g2169645460".freeze,
1065
+ label: "name (0..1)".freeze,
1066
+ range: "rdfs:Literal".freeze,
1067
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1068
+ type: "owl:DatatypeProperty".freeze
1069
+ property :nonEqual,
1070
+ comment: %(This ordering relation for gr:QualitativeValue pairs indicates that the subject is not equal to the object.).freeze,
1071
+ domain: "gr:QualitativeValue".freeze,
1072
+ label: "non equal (0..*)".freeze,
1073
+ "owl:inverseOf" => %(gr:nonEqual).freeze,
1074
+ range: "gr:QualitativeValue".freeze,
1075
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1076
+ type: "owl:ObjectProperty".freeze
1077
+ property :offers,
1078
+ comment: %(This links a gr:BusinessEntity to the offers \(gr:Offering\) it makes. If you want to express interest in receiving offers, use gr:seeks instead.).freeze,
1079
+ domain: "_:g2177191740".freeze,
1080
+ label: "offers (0..*)".freeze,
1081
+ range: "gr:Offering".freeze,
1082
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1083
+ type: "owl:ObjectProperty".freeze
1084
+ property :opens,
1085
+ comment: %(The opening hour of the gr:Location on the given gr:DayOfWeek.
1086
+ If no time-zone suffix is included, the time is given in the local time valid at the gr:Location.
1087
+
1088
+ For a time in GMT/UTC, simply add a "Z" following the time:
1089
+
1090
+ 09:30:10Z.
1091
+
1092
+ Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
1093
+
1094
+ 09:30:10-09:00
1095
+
1096
+ or
1097
+
1098
+ 09:30:10+09:00.
1099
+
1100
+ Note 1: Use 00:00:00 for the first second of the respective day and 23:59:59 for the last second of that day.
1101
+ Note 2: If a store opens at 17:00 on Saturdays and closes at 03:00:00 a.m. next morning, use 17:00:00 - 23:59:59 for Saturday and 00:00:00 - 03:00:00 for Sunday.
1102
+ Note 3: If the shop re-opens on the same day of the week or set of days of the week, you must create a second instance of gr:OpeningHoursSpecification.).freeze,
1103
+ domain: "gr:OpeningHoursSpecification".freeze,
1104
+ label: "opens (1..1)".freeze,
1105
+ range: "xsd:time".freeze,
1106
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1107
+ type: "owl:DatatypeProperty".freeze
1108
+ property :owns,
1109
+ comment: %(This property indicates that a particular person or business owns a particular product. It can be used to expose the products in one's posession in order to empower recommender systems to suggest matching offers.
1110
+
1111
+ Note that the product must be an instance of the class gr:Individual.
1112
+
1113
+ This property can also be safely applied to foaf:Agent instances.).freeze,
1114
+ domain: "_:g2177729800".freeze,
1115
+ label: "owns (0..*)".freeze,
1116
+ range: "gr:Individual".freeze,
1117
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1118
+ type: "owl:ObjectProperty".freeze
1119
+ property :predecessorOf,
1120
+ comment: %(This property indicates that the subject is a previous, often discontinued variant of the gr:ProductOrServiceModel used as the object.
1121
+
1122
+ Example: Golf III predecessorOf Golf IV
1123
+
1124
+ This relation is transitive.).freeze,
1125
+ domain: "gr:ProductOrServiceModel".freeze,
1126
+ label: "predecessor of (0..*)".freeze,
1127
+ "owl:inverseOf" => %(gr:successorOf).freeze,
1128
+ range: "gr:ProductOrServiceModel".freeze,
1129
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1130
+ type: "owl:ObjectProperty".freeze
1131
+ property :priceType,
1132
+ comment: %(This attribute can be used to distinguish multiple different price specifications for the same gr:Offering. It supersedes the former gr:isListPrice property. The following values are recommended:
1133
+
1134
+ The absence of this property marks the actual sales price.
1135
+
1136
+ SRP: "suggested retail price" - applicable for all sorts of a non-binding retail price recommendations, e.g. such published by the manufacturer or the distributor. This value replaces the former gr:isListPrice property.
1137
+
1138
+ INVOICE: The invoice price, mostly used in the car industry - this is the price a dealer pays to the manufacturer, excluding rebates and charges.).freeze,
1139
+ domain: "gr:UnitPriceSpecification".freeze,
1140
+ label: "price type (0..1)".freeze,
1141
+ range: "xsd:string".freeze,
1142
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1143
+ type: "owl:DatatypeProperty".freeze
1144
+ property :qualitativeProductOrServiceProperty,
1145
+ comment: %(This is the super property of all qualitative properties for products and services. All properties in product or service ontologies for which gr:QualitativeValue instances are specified are subproperties of this property.).freeze,
1146
+ domain: "_:g2172588260".freeze,
1147
+ label: "qualitative product or service property (0..*)".freeze,
1148
+ range: "gr:QualitativeValue".freeze,
1149
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1150
+ type: "owl:ObjectProperty".freeze
1151
+ property :quantitativeProductOrServiceProperty,
1152
+ comment: %(This is the super property of all quantitative properties for products and services. All properties in product or service ontologies that specify quantitative characteristics, for which an interval is at least theoretically an appropriate value, are subproperties of this property.).freeze,
1153
+ domain: "_:g2171240280".freeze,
1154
+ label: "quantitative product or service property (0..*)".freeze,
1155
+ range: "gr:QuantitativeValue".freeze,
1156
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1157
+ type: "owl:ObjectProperty".freeze
1158
+ property :relatedWebService,
1159
+ comment: %(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.
1160
+
1161
+ 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.).freeze,
1162
+ label: "related Web Service (0..*)".freeze,
1163
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1164
+ type: "owl:AnnotationProperty".freeze
1165
+ property :seeks,
1166
+ comment: %(This links a gr:BusinessEntity to gr:Offering nodes that describe what the business entity is interested in \(i.e., the buy side\). If you want to express interest in offering something, use gr:offers instead. Note that this substitutes the former gr:BusinessFunction gr:Buy, which is now deprecated.).freeze,
1167
+ domain: "_:g2172426320".freeze,
1168
+ label: "seeks (0..*)".freeze,
1169
+ range: "gr:Offering".freeze,
1170
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1171
+ type: "owl:ObjectProperty".freeze
1172
+ property :serialNumber,
1173
+ comment: %(The serial number or any alphanumeric identifier of a particular product. Note that serial number are unique only for the same brand or the same model, so you cannot infer from two occurrences of the same serial number that the objects to which they are attached are identical.
1174
+
1175
+ This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail.).freeze,
1176
+ domain: "_:g2171936620".freeze,
1177
+ label: "serial number (0..*)".freeze,
1178
+ range: "xsd:string".freeze,
1179
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1180
+ type: "owl:DatatypeProperty".freeze
1181
+ property :successorOf,
1182
+ comment: %(This property indicates that the subject is a newer, often updated or improved variant of the gr:ProductOrServiceModel used as the object.
1183
+
1184
+ Example: Golf III successorOf Golf II
1185
+
1186
+ This relation is transitive.).freeze,
1187
+ domain: "gr:ProductOrServiceModel".freeze,
1188
+ label: "successor of (0..*)".freeze,
1189
+ "owl:inverseOf" => %(gr:predecessorOf).freeze,
1190
+ range: "gr:ProductOrServiceModel".freeze,
1191
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1192
+ type: "owl:ObjectProperty".freeze
1193
+ property :taxID,
1194
+ comment: %(The Tax / Fiscal ID of the gr:BusinessEntity, e.g. the TIN in the US or the CIF/NIF in Spain. It is usually assigned by the country of residence).freeze,
1195
+ domain: "_:g2172567560".freeze,
1196
+ label: "Tax ID (0..1)".freeze,
1197
+ range: "xsd:string".freeze,
1198
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1199
+ type: "owl:DatatypeProperty".freeze
1200
+ property :typeOfGood,
1201
+ comment: %(This specifies the gr:ProductOrService that the gr:TypeAndQuantityNode is referring to.).freeze,
1202
+ domain: "gr:TypeAndQuantityNode".freeze,
1203
+ label: "type of good (1..1)".freeze,
1204
+ range: "_:g2177483360".freeze,
1205
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1206
+ type: "owl:ObjectProperty".freeze
1207
+ property :validFrom,
1208
+ comment: %(This property specifies the beginning of the validity of the gr:Offering, gr:PriceSpecification, gr:License, or gr:OpeningHoursSpecification.
1209
+ A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time:
1210
+
1211
+ 2008-05-30T09:30:10Z.
1212
+
1213
+ Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
1214
+
1215
+ 2008-05-30T09:30:10-09:00
1216
+
1217
+ or
1218
+
1219
+ 2008-05-30T09:30:10+09:00.
1220
+
1221
+ Note: If multiple contradicting instances of a gr:Offering, gr:PriceSpecification, or gr:OpeningHoursSpecification exist, it is a good heuristics to assume that
1222
+ 1. Information with validity information for the respective period of time ranks higher than information without validity information.
1223
+ 2. Among conflicting nodes both having validity information, the one with the shorter validity span ranks higher.).freeze,
1224
+ domain: "_:g2170483600".freeze,
1225
+ label: "valid from (0..1)".freeze,
1226
+ range: "xsd:dateTime".freeze,
1227
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1228
+ type: "owl:DatatypeProperty".freeze
1229
+ property :validThrough,
1230
+ comment: %(This property specifies the end of the validity of the gr:Offering, gr:PriceSpecification, gr:License, or gr:OpeningHoursSpecification.
1231
+ A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time:
1232
+
1233
+ 2008-05-30T09:30:10Z.
1234
+
1235
+ Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
1236
+
1237
+ 2008-05-30T09:30:10-09:00
1238
+
1239
+ or
1240
+ 2008-05-30T09:30:10+09:00.
1241
+
1242
+ Note 1: If multiple contradicting instances of a gr:Offering, gr:PriceSpecification, or gr:OpeningHoursSpecification exist, it is a good heuristics to assume that
1243
+ 1. Information with validity information for the respective period of time ranks higher than information without validity information.
1244
+ 2. Among conflicting nodes both having validity information, the one with the shorter validity span ranks higher.
1245
+ Note 2: For Google, attaching a gr:validThrough statement to a gr:UnitPriceSpecification is mandatory.
1246
+ ).freeze,
1247
+ domain: "_:g2178023560".freeze,
1248
+ label: "valid through (0..1)".freeze,
1249
+ range: "xsd:dateTime".freeze,
1250
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1251
+ type: "owl:DatatypeProperty".freeze
1252
+ property :valueAddedTaxIncluded,
1253
+ comment: %(This property specifies whether the applicable value-added tax \(VAT\) is included in the price of the gr:PriceSpecification or not.
1254
+
1255
+ Note: This is a simple representation which may not properly reflect all details of local taxation.).freeze,
1256
+ domain: "gr:PriceSpecification".freeze,
1257
+ label: "value added tax included (0..1)".freeze,
1258
+ range: "xsd:boolean".freeze,
1259
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1260
+ type: "owl:DatatypeProperty".freeze
1261
+ property :valueReference,
1262
+ comment: %(The superclass of properties that link a gr:QuantitativeValue or a gr:QualitativeValue to a second gr:QuantitativeValue or a gr:QualitativeValue that provides additional information on the original value. A good modeling practice is to define specializations of this property \(e.g. foo:referenceTemperature\) for your particular domain.).freeze,
1263
+ domain: "_:g2170726040".freeze,
1264
+ label: "value reference (0..*)".freeze,
1265
+ range: "_:g2170826980".freeze,
1266
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1267
+ type: "owl:ObjectProperty".freeze
1268
+ property :vatID,
1269
+ comment: %(The Value-added Tax ID of the gr:BusinessEntity. See http://en.wikipedia.org/wiki/Value_added_tax_identification_number for details.).freeze,
1270
+ domain: "_:g2171091600".freeze,
1271
+ label: "VAT ID (0..1)".freeze,
1272
+ range: "xsd:string".freeze,
1273
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1274
+ type: "owl:DatatypeProperty".freeze
1275
+ property :weight,
1276
+ comment: %(The weight of the gr:ProductOrService.
1277
+ Typical unit code\(s\): GRM for gram, KGM for kilogram, LBR for pound).freeze,
1278
+ domain: "_:g2171619540".freeze,
1279
+ label: "weight (0..1)".freeze,
1280
+ range: "gr:QuantitativeValue".freeze,
1281
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1282
+ subPropertyOf: "gr:quantitativeProductOrServiceProperty".freeze,
1283
+ type: "owl:ObjectProperty".freeze
1284
+ property :width,
1285
+ comment: %(The width of the gr:ProductOrService.
1286
+ Typical unit code\(s\): CMT for centimeters, INH for inches).freeze,
1287
+ domain: "_:g2170432580".freeze,
1288
+ label: "width (0..1)".freeze,
1289
+ range: "gr:QuantitativeValue".freeze,
1290
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1291
+ subPropertyOf: "gr:quantitativeProductOrServiceProperty".freeze,
1292
+ type: "owl:ObjectProperty".freeze
1293
+
1294
+ # Extra definitions
1295
+ term :AmericanExpress,
1296
+ comment: %(Payment by credit or debit cards issued by the American Express network.).freeze,
1297
+ label: "American Express (payment method)".freeze,
1298
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1299
+ type: "gr:PaymentMethodCreditCard".freeze
1300
+ term :Business,
1301
+ comment: %(The gr:BusinessEntityType representing such agents that are themselves offering commercial services or products on the market. Usually, businesses are characterized by the fact that they are officially registered with the public administration and strive for profits by their activities.).freeze,
1302
+ label: "Business (business entity type)".freeze,
1303
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1304
+ type: "gr:BusinessEntityType".freeze
1305
+ term :Buy,
1306
+ comment: %(This gr:BusinessFunction indicates that the gr:BusinessEntity is in general interested in purchasing the specified gr:ProductOrService.
1307
+ DEPRECATED. Use gr:seeks instead.).freeze,
1308
+ label: "Buy (business function, DEPRECATED)".freeze,
1309
+ "owl:deprecated" => %(true).freeze,
1310
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1311
+ type: "gr:BusinessFunction".freeze
1312
+ term :ByBankTransferInAdvance,
1313
+ comment: %(Payment by bank transfer in advance, i.e., the offering gr:BusinessEntity will inform the buying party about their bank account details and will deliver the goods upon receipt of the due amount.
1314
+ This is equivalent to payment by wire transfer.).freeze,
1315
+ label: "By bank transfer in advance (payment method)".freeze,
1316
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1317
+ type: "gr:PaymentMethod".freeze
1318
+ term :ByInvoice,
1319
+ comment: %(Payment by bank transfer after delivery, i.e., the offering gr:BusinessEntity will deliver first, inform the buying party about the due amount and their bank account details, and expect payment shortly after delivery.).freeze,
1320
+ label: "By invoice (payment method)".freeze,
1321
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1322
+ type: "gr:PaymentMethod".freeze
1323
+ term :COD,
1324
+ comment: %(Collect on delivery / Cash on delivery - A payment method where the recipient of goods pays at the time of delivery. Usually, the amount of money is collected by the transportation company handling the goods.).freeze,
1325
+ label: "COD (payment method)".freeze,
1326
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1327
+ type: "gr:PaymentMethod".freeze
1328
+ term :Cash,
1329
+ comment: %(Payment by cash upon delivery or pickup.).freeze,
1330
+ label: "Cash (payment method)".freeze,
1331
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1332
+ type: "gr:PaymentMethod".freeze
1333
+ term :CheckInAdvance,
1334
+ comment: %(Payment by sending a check in advance, i.e., the offering gr:BusinessEntity will deliver the goods upon receipt of a check over the due amount. There are variations in handling payment by check - sometimes, shipment will be upon receipt of the check as a document, sometimes the shipment will take place only upon successful crediting of the check.).freeze,
1335
+ label: "Check in advance (payment method)".freeze,
1336
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1337
+ type: "gr:PaymentMethod".freeze
1338
+ term :ConstructionInstallation,
1339
+ comment: %(This gr:BusinessFunction indicates that the gr:BusinessEntity offers \(or seeks\) the construction and/or installation of the specified gr:ProductOrService at the customer's location.).freeze,
1340
+ label: "Construction / installation (business function)".freeze,
1341
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1342
+ type: "gr:BusinessFunction".freeze
1343
+ term :DHL,
1344
+ comment: %(Delivery via the parcel service DHL.).freeze,
1345
+ label: "DHL (delivery method)".freeze,
1346
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1347
+ type: "gr:DeliveryModeParcelService".freeze
1348
+ term :DeliveryModeDirectDownload,
1349
+ comment: %(Delivery of the goods via direct download from the Internet, i.e., the offering gr:BusinessEntity provides the buying party with details on how to retrieve the goods online. Connection fees and other costs of using the infrastructure are to be carried by the buying party.).freeze,
1350
+ label: "Delivery mode direct download (delivery method)".freeze,
1351
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1352
+ type: "gr:DeliveryMethod".freeze
1353
+ term :DeliveryModeFreight,
1354
+ comment: %(Delivery by an unspecified air, sea, or ground freight carrier or cargo company.).freeze,
1355
+ label: "Delivery mode freight (delivery method)".freeze,
1356
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1357
+ type: "gr:DeliveryMethod".freeze
1358
+ term :DeliveryModeMail,
1359
+ comment: %(Delivery via regular mail service \(private or public postal services\).).freeze,
1360
+ label: "Delivery mode mail (delivery method)".freeze,
1361
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1362
+ type: "gr:DeliveryMethod".freeze
1363
+ term :DeliveryModeOwnFleet,
1364
+ comment: %(Delivery of the goods by using a fleet of vehicles either owned and operated or subcontracted by the gr:BusinessEntity.).freeze,
1365
+ label: "Delivery mode own fleet (delivery method)".freeze,
1366
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1367
+ type: "gr:DeliveryMethod".freeze
1368
+ term :DeliveryModePickUp,
1369
+ comment: %(Delivery of the goods by picking them up at one of the stores etc. \(gr:Location\) during the opening hours as specified by respective instances of gr:OpeningHoursSpecification.).freeze,
1370
+ label: "Delivery mode pick up (delivery method)".freeze,
1371
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1372
+ type: "gr:DeliveryMethod".freeze
1373
+ term :DinersClub,
1374
+ comment: %(Payment by credit or debit cards issued by the Diner's Club network.).freeze,
1375
+ label: "Diners Club (payment method)".freeze,
1376
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1377
+ type: "gr:PaymentMethodCreditCard".freeze
1378
+ term :DirectDebit,
1379
+ comment: %(Payment by direct debit, i.e., the buying party will inform the offering gr:BusinessEntity about its bank account details and authorizes the gr:BusinessEntity to collect the agreed amount directly from that account.).freeze,
1380
+ label: "Direct debit (payment method)".freeze,
1381
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1382
+ type: "gr:PaymentMethod".freeze
1383
+ term :Discover,
1384
+ comment: %(Payment by credit or debit cards issued by the Discover network.).freeze,
1385
+ label: "Discover (payment method)".freeze,
1386
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1387
+ type: "gr:PaymentMethodCreditCard".freeze
1388
+ term :Dispose,
1389
+ comment: %(This gr:BusinessFunction indicates that the gr:BusinessEntity offers \(or seeks\) the acceptance of the specified gr:ProductOrService for proper disposal, recycling, or any other kind of allowed usages, freeing the current owner from all rights and obligations of ownership.).freeze,
1390
+ label: "Dispose (business function)".freeze,
1391
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1392
+ type: "gr:BusinessFunction".freeze
1393
+ term :Enduser,
1394
+ comment: %(The gr:BusinessEntityType representing such agents that are purchasing the good or service for private consumption, in particular not for resale or for usage within an industrial enterprise. By default, a Business Entity is an Enduser.).freeze,
1395
+ label: "Enduser (business entity type)".freeze,
1396
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1397
+ type: "gr:BusinessEntityType".freeze
1398
+ term :FederalExpress,
1399
+ comment: %(Delivery via the parcel service Federal Express.).freeze,
1400
+ label: "Federal Express (delivery method)".freeze,
1401
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1402
+ type: "gr:DeliveryModeParcelService".freeze
1403
+ term :Friday,
1404
+ comment: %(Friday as a day of the week.).freeze,
1405
+ "gr:displayPosition" => %(5).freeze,
1406
+ "gr:hasNext" => %(gr:Saturday).freeze,
1407
+ "gr:hasPrevious" => %(gr:Thursday).freeze,
1408
+ label: "Friday (day of week)".freeze,
1409
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1410
+ type: "gr:DayOfWeek".freeze
1411
+ term :GoogleCheckout,
1412
+ comment: %(Payment via the Google Checkout payment service.).freeze,
1413
+ label: "Google Checkout (payment method)".freeze,
1414
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1415
+ type: "gr:PaymentMethod".freeze
1416
+ term :JCB,
1417
+ comment: %(Payment by credit or debit cards issued by the JCB network.).freeze,
1418
+ label: "JCB (payment method)".freeze,
1419
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1420
+ type: "gr:PaymentMethodCreditCard".freeze
1421
+ term :"Labor-BringIn",
1422
+ comment: %(In case of a defect or malfunction, the buying party has the right to transport the good to a service location determined by the the selling gr:BusinessEntity and will be charged only for parts and materials needed to fix the problem. Labor will be covered by the selling business entity or one of its partnering business entities.
1423
+
1424
+ Note: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.).freeze,
1425
+ label: "Labor / bring-in (warranty scope)".freeze,
1426
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1427
+ type: "gr:WarrantyScope".freeze
1428
+ term :LeaseOut,
1429
+ comment: %(This gr:BusinessFunction indicates that the gr:BusinessEntity offers \(or seeks\) the temporary right to use the specified gr:ProductOrService.).freeze,
1430
+ label: "Lease Out (business function)".freeze,
1431
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1432
+ type: "gr:BusinessFunction".freeze
1433
+ term :Maintain,
1434
+ comment: %(This gr:BusinessFunction indicates that the gr:BusinessEntity offers \(or seeks\) typical maintenance tasks for the specified gr:ProductOrService. Maintenance tasks are actions that undo or compensate for wear or other deterioriation caused by regular usage, in order to restore the originally intended function of the product, or to prevent outage or malfunction.).freeze,
1435
+ label: "Maintain (business function)".freeze,
1436
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1437
+ type: "gr:BusinessFunction".freeze
1438
+ term :MasterCard,
1439
+ comment: %(Payment by credit or debit cards issued by the MasterCard network.).freeze,
1440
+ label: "MasterCard (payment method)".freeze,
1441
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1442
+ type: "gr:PaymentMethodCreditCard".freeze
1443
+ term :Monday,
1444
+ comment: %(Monday as a day of the week.).freeze,
1445
+ "gr:displayPosition" => %(1).freeze,
1446
+ "gr:hasNext" => %(gr:Tuesday).freeze,
1447
+ "gr:hasPrevious" => %(gr:Sunday).freeze,
1448
+ label: "Monday (day of week)".freeze,
1449
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1450
+ type: "gr:DayOfWeek".freeze
1451
+ term :"PartsAndLabor-BringIn",
1452
+ comment: %(In case of a defect or malfunction, the buying party has the right to transport the good to a service location determined by the the selling gr:BusinessEntity and will not be be charged for labor, parts, and materials needed to fix the problem. All those costs will be covered by the selling business entity or one of its partnering business entities.
1453
+
1454
+ Note: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.).freeze,
1455
+ label: "Parts and labor / bring-in (warranty scope)".freeze,
1456
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1457
+ type: "gr:WarrantyScope".freeze
1458
+ term :"PartsAndLabor-PickUp",
1459
+ comment: %(In case of a defect or malfunction, the buying party has the right to request from the selling gr:Business Entity to pick-up the good from its current location to a suitable service location, where the functionality of the good will be restored. All transportation, labor, parts, and materials needed to fix the problem will be covered by the selling business entity or one of its partnering business entities.
1460
+
1461
+ Note: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.).freeze,
1462
+ label: "Parts and labor / pick up (warranty scope)".freeze,
1463
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1464
+ type: "gr:WarrantyScope".freeze
1465
+ term :PayPal,
1466
+ comment: %(Payment via the PayPal payment service.).freeze,
1467
+ label: "PayPal (payment method)".freeze,
1468
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1469
+ type: "gr:PaymentMethod".freeze
1470
+ term :PaySwarm,
1471
+ comment: %(Payment via the PaySwarm distributed micropayment service.).freeze,
1472
+ label: "PaySwarm (payment method)".freeze,
1473
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1474
+ type: "gr:PaymentMethod".freeze
1475
+ term :ProvideService,
1476
+ comment: %(This gr:BusinessFunction indicates that the gr:BusinessEntity offers \(or seeks\) the respective type of service.
1477
+
1478
+ Note: Maintain and Repair are also types of Services. However, products and services ontologies often provide classes for tangible products as well as for types of services. The business function gr:ProvideService is to be used with such goods that are services, while gr:Maintain and gr:Repair can be used with goods for which only the class of product exists in the ontology, but not the respective type of service.
1479
+
1480
+ Example: Car maintenance could be expressed both as "provide the service car maintenance" or "maintain cars".).freeze,
1481
+ label: "Provide service (business function)".freeze,
1482
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1483
+ type: "gr:BusinessFunction".freeze
1484
+ term :PublicHolidays,
1485
+ comment: %(A placeholder for all official public holidays at the gr:Location. This allows specifying the opening hours on public holidays. If a given day is a public holiday, this specification supersedes the opening hours for the respective day of the week.).freeze,
1486
+ "gr:displayPosition" => %(8).freeze,
1487
+ label: "Public holidays (day of week)".freeze,
1488
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1489
+ type: "gr:DayOfWeek".freeze
1490
+ term :PublicInstitution,
1491
+ comment: %(The gr:BusinessEntityType representing such agents that are part of the adminstration or owned by the public.).freeze,
1492
+ label: "Public institution (business entity type)".freeze,
1493
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1494
+ type: "gr:BusinessEntityType".freeze
1495
+ term :Repair,
1496
+ comment: %(This gr:BusinessFunction indicates that the gr:BusinessEntity offers \(or seeks\) the evaluation of the chances for repairing, and, if positive, repair of the specified gr:ProductOrService. Repairing means actions that restore the originally intended function of a product that suffers from outage or malfunction.).freeze,
1497
+ label: "Repair (business function)".freeze,
1498
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1499
+ type: "gr:BusinessFunction".freeze
1500
+ term :Reseller,
1501
+ comment: %(The gr:BusinessEntityType representing such agents that are purchasing the scope of products included in the gr:Offering for resale on the market. Resellers are also businesses, i.e., they are officially registered with the public administration and strive for profits by their activities.).freeze,
1502
+ label: "Reseller (business entity type)".freeze,
1503
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1504
+ type: "gr:BusinessEntityType".freeze
1505
+ term :Saturday,
1506
+ comment: %(Saturday as a day of the week.).freeze,
1507
+ "gr:displayPosition" => %(6).freeze,
1508
+ "gr:hasNext" => %(gr:Sunday).freeze,
1509
+ "gr:hasPrevious" => %(gr:Friday).freeze,
1510
+ label: "Saturday (day of week)".freeze,
1511
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1512
+ type: "gr:DayOfWeek".freeze
1513
+ term :Sell,
1514
+ comment: %(This gr:BusinessFunction indicates that the gr:BusinessEntity offers to permanently transfer all property rights on the specified gr:ProductOrService.).freeze,
1515
+ label: "Sell (business function)".freeze,
1516
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1517
+ type: "gr:BusinessFunction".freeze
1518
+ term :Sunday,
1519
+ comment: %(Sunday as a day of the week.).freeze,
1520
+ "gr:displayPosition" => %(7).freeze,
1521
+ "gr:hasNext" => %(gr:Monday).freeze,
1522
+ "gr:hasPrevious" => %(gr:Saturday).freeze,
1523
+ label: "Sunday (day of week)".freeze,
1524
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1525
+ type: "gr:DayOfWeek".freeze
1526
+ term :Thursday,
1527
+ comment: %(Thursday as a day of the week.).freeze,
1528
+ "gr:displayPosition" => %(4).freeze,
1529
+ "gr:hasNext" => %(gr:Friday).freeze,
1530
+ "gr:hasPrevious" => %(gr:Wednesday).freeze,
1531
+ label: "Thursday (day of week)".freeze,
1532
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1533
+ type: "gr:DayOfWeek".freeze
1534
+ term :Tuesday,
1535
+ comment: %(Tuesday as a day of the week.).freeze,
1536
+ "gr:displayPosition" => %(2).freeze,
1537
+ "gr:hasNext" => %(gr:Wednesday).freeze,
1538
+ "gr:hasPrevious" => %(gr:Monday).freeze,
1539
+ label: "Tuesday (day of week)".freeze,
1540
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1541
+ type: "gr:DayOfWeek".freeze
1542
+ term :UPS,
1543
+ comment: %(Delivery via the parcel service UPS.).freeze,
1544
+ label: "UPS (delivery method)".freeze,
1545
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1546
+ type: "gr:DeliveryModeParcelService".freeze
1547
+ term :VISA,
1548
+ comment: %(Payment by credit or debit cards issued by the VISA network.).freeze,
1549
+ label: "VISA (payment method)".freeze,
1550
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1551
+ type: "gr:PaymentMethodCreditCard".freeze
1552
+ term :Wednesday,
1553
+ comment: %(Wednesday as a day of the week.).freeze,
1554
+ "gr:displayPosition" => %(3).freeze,
1555
+ "gr:hasNext" => %(gr:Thursday).freeze,
1556
+ "gr:hasPrevious" => %(gr:Tuesday).freeze,
1557
+ label: "Wednesday (day of week)".freeze,
1558
+ "rdfs:isDefinedBy" => %(http://purl.org/goodrelations/v1).freeze,
1559
+ type: "gr:DayOfWeek".freeze
1093
1560
  end
1094
1561
  end