rdf 1.1.0p4 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. checksums.yaml +6 -14
  2. data/README +33 -33
  3. data/VERSION +1 -1
  4. data/lib/rdf.rb +60 -12
  5. data/lib/rdf/cli.rb +7 -1
  6. data/lib/rdf/cli/vocab-loader.rb +240 -0
  7. data/lib/rdf/format.rb +2 -2
  8. data/lib/rdf/mixin/enumerable.rb +12 -4
  9. data/lib/rdf/mixin/queryable.rb +13 -13
  10. data/lib/rdf/model/graph.rb +5 -4
  11. data/lib/rdf/model/list.rb +15 -4
  12. data/lib/rdf/model/literal.rb +2 -1
  13. data/lib/rdf/model/statement.rb +10 -1
  14. data/lib/rdf/model/term.rb +8 -0
  15. data/lib/rdf/model/uri.rb +107 -2
  16. data/lib/rdf/model/value.rb +8 -0
  17. data/lib/rdf/ntriples/reader.rb +5 -4
  18. data/lib/rdf/query.rb +47 -12
  19. data/lib/rdf/query/solutions.rb +29 -29
  20. data/lib/rdf/reader.rb +13 -3
  21. data/lib/rdf/repository.rb +1 -0
  22. data/lib/rdf/util/file.rb +86 -6
  23. data/lib/rdf/vocab.rb +158 -58
  24. data/lib/rdf/vocab/cc.rb +28 -11
  25. data/lib/rdf/vocab/cert.rb +127 -9
  26. data/lib/rdf/vocab/dc.rb +242 -60
  27. data/lib/rdf/vocab/dc11.rb +42 -20
  28. data/lib/rdf/vocab/doap.rb +121 -42
  29. data/lib/rdf/vocab/exif.rb +540 -165
  30. data/lib/rdf/vocab/foaf.rb +353 -66
  31. data/lib/rdf/vocab/geo.rb +40 -10
  32. data/lib/rdf/vocab/gr.rb +1094 -0
  33. data/lib/rdf/vocab/http.rb +81 -23
  34. data/lib/rdf/vocab/ical.rb +361 -0
  35. data/lib/rdf/vocab/ma.rb +281 -69
  36. data/lib/rdf/vocab/og.rb +98 -0
  37. data/lib/rdf/vocab/owl.rb +226 -56
  38. data/lib/rdf/vocab/prov.rb +489 -0
  39. data/lib/rdf/vocab/rdfs.rb +38 -14
  40. data/lib/rdf/vocab/rsa.rb +25 -9
  41. data/lib/rdf/vocab/rss.rb +29 -11
  42. data/lib/rdf/vocab/schema.rb +3729 -647
  43. data/lib/rdf/vocab/sioc.rb +224 -89
  44. data/lib/rdf/vocab/skos.rb +141 -33
  45. data/lib/rdf/vocab/skosxl.rb +43 -0
  46. data/lib/rdf/vocab/v.rb +154 -0
  47. data/lib/rdf/vocab/vcard.rb +337 -0
  48. data/lib/rdf/vocab/void.rb +142 -0
  49. data/lib/rdf/vocab/wdrs.rb +129 -0
  50. data/lib/rdf/vocab/wot.rb +52 -18
  51. data/lib/rdf/vocab/xhtml.rb +3 -6
  52. data/lib/rdf/vocab/xhv.rb +239 -0
  53. data/lib/rdf/writer.rb +3 -3
  54. metadata +81 -14
@@ -1,17 +1,41 @@
1
+ # This file generated automatically using vocab-fetch from http://www.w3.org/2000/01/rdf-schema#
2
+ require 'rdf'
1
3
  module RDF
2
- ##
3
- # RDF Schema (RDFS) vocabulary.
4
- #
5
- # @see http://www.w3.org/TR/rdf-schema/
6
- class RDFS < Vocabulary("http://www.w3.org/2000/01/rdf-schema#")
7
- property :comment
8
- property :domain
9
- property :isDefinedBy
10
- property :label
11
- property :member
12
- property :range
13
- property :seeAlso
14
- property :subClassOf
15
- property :subPropertyOf
4
+ class RDFS < StrictVocabulary("http://www.w3.org/2000/01/rdf-schema#")
5
+
6
+ # Class definitions
7
+ property :Class, :label => 'Class', :comment =>
8
+ %(The class of classes.)
9
+ property :Container, :label => 'Container', :comment =>
10
+ %(The class of RDF containers.)
11
+ property :ContainerMembershipProperty, :label => 'ContainerMembershipProperty', :comment =>
12
+ %(The class of container membership properties, rdf:_1, rdf:_2,
13
+ ..., all of which are sub-properties of 'member'.)
14
+ property :Datatype, :label => 'Datatype', :comment =>
15
+ %(The class of RDF datatypes.)
16
+ property :Literal, :label => 'Literal', :comment =>
17
+ %(The class of literal values, eg. textual strings and integers.)
18
+ property :Resource, :label => 'Resource', :comment =>
19
+ %(The class resource, everything.)
20
+
21
+ # Property definitions
22
+ property :comment, :label => 'comment', :comment =>
23
+ %(A description of the subject resource.)
24
+ property :domain, :label => 'domain', :comment =>
25
+ %(A domain of the subject property.)
26
+ property :isDefinedBy, :label => 'isDefinedBy', :comment =>
27
+ %(The defininition of the subject resource.)
28
+ property :label, :label => 'label', :comment =>
29
+ %(A human-readable name for the subject.)
30
+ property :member, :label => 'member', :comment =>
31
+ %(A member of the subject resource.)
32
+ property :range, :label => 'range', :comment =>
33
+ %(A range of the subject property.)
34
+ property :seeAlso, :label => 'seeAlso', :comment =>
35
+ %(Further information about the subject resource.)
36
+ property :subClassOf, :label => 'subClassOf', :comment =>
37
+ %(The subject is a subclass of a class.)
38
+ property :subPropertyOf, :label => 'subPropertyOf', :comment =>
39
+ %(The subject is a subproperty of a property.)
16
40
  end
17
41
  end
data/lib/rdf/vocab/rsa.rb CHANGED
@@ -1,12 +1,28 @@
1
+ # This file generated automatically using vocab-fetch from http://www.w3.org/ns/auth/rsa#
2
+ require 'rdf'
1
3
  module RDF
2
- ##
3
- # W3 RSA Keys (RSA) vocabulary.
4
- #
5
- # @see http://www.w3.org/ns/auth/rsa#
6
- # @since 0.2.0
7
- class RSA < Vocabulary("http://www.w3.org/ns/auth/rsa#")
8
- property :modulus
9
- property :private_exponent
10
- property :public_exponent
4
+ class RSA < StrictVocabulary("http://www.w3.org/ns/auth/rsa#")
5
+
6
+ # Class definitions
7
+ property :RSAKey, :label => 'RSA Key', :comment =>
8
+ %(The union of the public and private components of an RSAKey.
9
+ Usually those pieces are not kept together)
10
+ property :RSAPrivateKey, :label => 'RSA Private Key', :comment =>
11
+ %(A Private Key in the RSA framework)
12
+ property :RSAPublicKey, :label => 'RSA Public Key', :comment =>
13
+ %(The RSA public key. Padded message m are encrypted by applying
14
+ the function modulus\(power\(m,exponent\),modulus\))
15
+
16
+ # Property definitions
17
+ property :modulus, :label => 'modulus', :comment =>
18
+ %(The modulus of an RSA public and private key. This is defined
19
+ as n = p*q)
20
+ property :private_exponent, :label => 'private', :comment =>
21
+ %(The exponent used to decrypt the message calculated as
22
+ public_exponent*private_exponent = 1 modulo totient\(p*q\) The
23
+ private exponent is often named 'd')
24
+ property :public_exponent, :label => 'public_exponent', :comment =>
25
+ %(The exponent used to encrypt the message. Number chosen
26
+ between 1 and the totient\(p*q\). Often named 'e' .)
11
27
  end
12
28
  end
data/lib/rdf/vocab/rss.rb CHANGED
@@ -1,14 +1,32 @@
1
+ # This file generated automatically using vocab-fetch from http://purl.org/rss/1.0/schema.rdf
2
+ require 'rdf'
1
3
  module RDF
2
- ##
3
- # RDF Site Summary (RSS) vocabulary.
4
- #
5
- # @see http://web.resource.org/rss/1.0/
6
- class RSS < Vocabulary("http://purl.org/rss/1.0/")
7
- property :description
8
- property :items
9
- property :link
10
- property :name
11
- property :title
12
- property :url
4
+ class RSS < StrictVocabulary("http://purl.org/rss/1.0/")
5
+
6
+ # Class definitions
7
+ property :channel, :label => 'Channel', :comment =>
8
+ %(An RSS information channel.)
9
+ property :image, :label => 'Image', :comment =>
10
+ %(An RSS image.)
11
+ property :item, :label => 'Item', :comment =>
12
+ %(An RSS item.)
13
+ property :textinput, :label => 'Text Input', :comment =>
14
+ %(An RSS text input.)
15
+
16
+ # Property definitions
17
+ property :description, :label => 'Description', :comment =>
18
+ %(A short text description of the subject.)
19
+ property :items, :label => 'Items', :comment =>
20
+ %(Points to a list of rss:item elements that are members of the
21
+ subject channel.)
22
+ property :link, :label => 'Link', :comment =>
23
+ %(The URL to which an HTML rendering of the subject will link.)
24
+ property :name, :label => 'Name', :comment =>
25
+ %(The text input field's \(variable\) name.)
26
+ property :title, :label => 'Title', :comment =>
27
+ %(A descriptive title for the channel.)
28
+ property :url, :label => 'URL', :comment =>
29
+ %(The URL of the image to used in the 'src' attribute of the
30
+ channel's image tag when rendered as HTML.)
13
31
  end
14
32
  end
@@ -1,652 +1,3734 @@
1
+ # This file generated automatically using vocab-fetch from http://schema.org/docs/schema_org_rdfa.html
2
+ require 'rdf'
1
3
  module RDF
2
- ##
3
- # Schema.org (FOAF) vocabulary.
4
- #
5
- # Creating this involves extrating class and property definitions
6
- # from http://schema.org/docs/schema_org_rdfa.html, which is done
7
- # though the private class-method {SCHEMA.generate}
8
- #
9
- # @see http://schema.org/
10
- class SCHEMA < Vocabulary("http://schema.org/")
11
-
12
- property :about
13
- property :acceptedPaymentMethod
14
- property :acceptsReservations
15
- property :accountablePerson
16
- property :acquiredFrom
17
- property :action
18
- property :activeIngredient
19
- property :activityDuration
20
- property :activityFrequency
21
- property :actor
22
- property :actors
23
- property :additionalName
24
- property :additionalType
25
- property :additionalVariable
26
- property :addOn
27
- property :address
28
- property :addressCountry
29
- property :addressLocality
30
- property :addressRegion
31
- property :administrationRoute
32
- property :advanceBookingRequirement
33
- property :adverseOutcome
34
- property :affectedBy
35
- property :affiliation
36
- property :agent
37
- property :aggregateRating
38
- property :album
39
- property :albums
40
- property :alcoholWarning
41
- property :algorithm
42
- property :alignmentType
43
- property :alternateName
44
- property :alternativeHeadline
45
- property :alumni
46
- property :alumniOf
47
- property :amountOfThisGood
48
- property :antagonist
49
- property :applicableLocation
50
- property :applicationCategory
51
- property :applicationSubCategory
52
- property :applicationSuite
53
- property :appliesToDeliveryMethod
54
- property :appliesToPaymentMethod
55
- property :arterialBranch
56
- property :articleBody
57
- property :articleSection
58
- property :aspect
59
- property :assembly
60
- property :assemblyVersion
61
- property :associatedAnatomy
62
- property :associatedArticle
63
- property :associatedMedia
64
- property :associatedPathophysiology
65
- property :attendee
66
- property :attendees
67
- property :audience
68
- property :audio
69
- property :author
70
- property :availability
71
- property :availabilityEnds
72
- property :availabilityStarts
73
- property :availableAtOrFrom
74
- property :availableDeliveryMethod
75
- property :availableIn
76
- property :availableService
77
- property :availableStrength
78
- property :availableTest
79
- property :award
80
- property :awards
81
- property :background
82
- property :baseSalary
83
- property :benefits
84
- property :bestRating
85
- property :billingIncrement
86
- property :biomechnicalClass
87
- property :birthDate
88
- property :bitrate
89
- property :blogPost
90
- property :blogPosts
91
- property :bloodSupply
92
- property :bodyLocation
93
- property :bookEdition
94
- property :bookFormat
95
- property :borrower
96
- property :box
97
- property :branch
98
- property :branchOf
99
- property :brand
100
- property :breadcrumb
101
- property :breastfeedingWarning
102
- property :browserRequirements
103
- property :businessFunction
104
- property :buyer
105
- property :byArtist
106
- property :calories
107
- property :candidate
108
- property :caption
109
- property :carbohydrateContent
110
- property :carrierRequirements
111
- property :catalog
112
- property :category
113
- property :cause
114
- property :causeOf
115
- property :childMaxAge
116
- property :childMinAge
117
- property :children
118
- property :cholesterolContent
119
- property :circle
120
- property :citation
121
- property :clincalPharmacology
122
- property :closes
123
- property :code
124
- property :codeRepository
125
- property :codeValue
126
- property :codingSystem
127
- property :colleague
128
- property :colleagues
129
- property :collection
130
- property :color
131
- property :comment
132
- property :commentText
133
- property :commentTime
134
- property :comprisedOf
135
- property :connectedTo
136
- property :contactPoint
137
- property :contactPoints
138
- property :contactType
139
- property :containedIn
140
- property :contentLocation
141
- property :contentRating
142
- property :contentSize
143
- property :contentUrl
144
- property :contraindication
145
- property :contributor
146
- property :cookingMethod
147
- property :cookTime
148
- property :copyrightHolder
149
- property :copyrightYear
150
- property :cost
151
- property :costCategory
152
- property :costCurrency
153
- property :costOrigin
154
- property :costPerUnit
155
- property :countriesNotSupported
156
- property :countriesSupported
157
- property :course
158
- property :creator
159
- property :currenciesAccepted
160
- property :dataset
161
- property :dateCreated
162
- property :dateline
163
- property :dateModified
164
- property :datePosted
165
- property :datePublished
166
- property :dayOfWeek
167
- property :deathDate
168
- property :deliveryLeadTime
169
- property :deliveryMethod
170
- property :dependencies
171
- property :depth
172
- property :description
173
- property :device
174
- property :diagnosis
175
- property :diagram
176
- property :diet
177
- property :dietFeatures
178
- property :differentialDiagnosis
179
- property :director
180
- property :discusses
181
- property :discussionUrl
182
- property :distance
183
- property :distinguishingSign
184
- property :distribution
185
- property :domainIncludes
186
- property :dosageForm
187
- property :doseSchedule
188
- property :doseUnit
189
- property :doseValue
190
- property :downloadUrl
191
- property :drainsTo
192
- property :drug
193
- property :drugClass
194
- property :drugUnit
195
- property :duns
196
- property :duplicateTherapy
197
- property :duration
198
- property :durationOfWarranty
199
- property :editor
200
- property :educationalAlignment
201
- property :educationalFramework
202
- property :educationalRole
203
- property :educationalUse
204
- property :educationRequirements
205
- property :elevation
206
- property :eligibleCustomerType
207
- property :eligibleDuration
208
- property :eligibleQuantity
209
- property :eligibleRegion
210
- property :eligibleTransactionVolume
211
- property :email
212
- property :embedUrl
213
- property :employee
214
- property :employees
215
- property :employmentType
216
- property :encodesCreativeWork
217
- property :encoding
218
- property :encodingFormat
219
- property :encodings
220
- property :endDate
221
- property :endorsee
222
- property :endorsers
223
- property :endTime
224
- property :entertainmentBusiness
225
- property :epidemiology
226
- property :episode
227
- property :episodeNumber
228
- property :episodes
229
- property :equal
230
- property :estimatesRiskOf
231
- property :event
232
- property :events
233
- property :evidenceLevel
234
- property :evidenceOrigin
235
- property :exercisePlan
236
- property :exerciseType
237
- property :exifData
238
- property :expectedPrognosis
239
- property :experienceRequirements
240
- property :expertConsiderations
241
- property :expires
242
- property :familyName
243
- property :fatContent
244
- property :faxNumber
245
- property :featureList
246
- property :fiberContent
247
- property :fileFormat
248
- property :fileSize
249
- property :followee
250
- property :follows
251
- property :followup
252
- property :foodEstablishment
253
- property :foodEvent
254
- property :foodWarning
255
- property :founder
256
- property :founders
257
- property :foundingDate
258
- property :frequency
259
- property :fromLocation
260
- property :function
261
- property :functionalClass
262
- property :gender
263
- property :genre
264
- property :geo
265
- property :givenName
266
- property :globalLocationNumber
267
- property :greater
268
- property :greaterOrEqual
269
- property :gtin13
270
- property :gtin14
271
- property :gtin8
272
- property :guideline
273
- property :guidelineDate
274
- property :guidelineSubject
275
- property :hasPOS
276
- property :headline
277
- property :healthCondition
278
- property :height
279
- property :highPrice
280
- property :hiringOrganization
281
- property :homeLocation
282
- property :honorificPrefix
283
- property :honorificSuffix
284
- property :hospitalAffiliation
285
- property :howPerformed
286
- property :identifyingExam
287
- property :identifyingTest
288
- property :illustrator
289
- property :image
290
- property :imagingTechnique
291
- property :inAlbum
292
- property :incentives
293
- property :includedRiskFactor
294
- property :includesObject
295
- property :increasesRiskOf
296
- property :indication
297
- property :industry
298
- property :infectiousAgent
299
- property :infectiousAgentClass
300
- property :ingredients
301
- property :inLanguage
302
- property :inPlaylist
303
- property :insertion
304
- property :installUrl
305
- property :instrument
306
- property :intensity
307
- property :interactingDrug
308
- property :interactionCount
309
- property :interactivityType
310
- property :inventoryLevel
311
- property :isAccessoryOrSparePartFor
312
- property :isAvailableGenerically
313
- property :isBasedOnUrl
314
- property :isbn
315
- property :isConsumableFor
316
- property :isFamilyFriendly
317
- property :isicV4
318
- property :isPartOf
319
- property :isProprietary
320
- property :isRelatedTo
321
- property :isSimilarTo
322
- property :isVariantOf
323
- property :itemCondition
324
- property :itemListElement
325
- property :itemListOrder
326
- property :itemOffered
327
- property :itemReviewed
328
- property :jobLocation
329
- property :jobTitle
330
- property :keywords
331
- property :knows
332
- property :labelDetails
333
- property :landlord
334
- property :language
335
- property :lastReviewed
336
- property :latitude
337
- property :learningResourceType
338
- property :legalName
339
- property :legalStatus
340
- property :lender
341
- property :lesser
342
- property :lesserOrEqual
343
- property :line
344
- property :location
345
- property :logo
346
- property :longitude
347
- property :loser
348
- property :lowPrice
349
- property :mainContentOfPage
350
- property :makesOffer
351
- property :manufacturer
352
- property :map
353
- property :maps
354
- property :maximumIntake
355
- property :maxPrice
356
- property :maxValue
357
- property :mechanismOfAction
358
- property :medicalSpecialty
359
- property :medicineSystem
360
- property :member
361
- property :memberOf
362
- property :members
363
- property :memoryRequirements
364
- property :mentions
365
- property :menu
366
- property :minPrice
367
- property :minValue
368
- property :model
369
- property :mpn
370
- property :musicBy
371
- property :musicGroupMember
372
- property :naics
373
- property :name
374
- property :nationality
375
- property :naturalProgression
376
- property :nerve
377
- property :nerveMotor
378
- property :nonEqual
379
- property :nonProprietaryName
380
- property :normalRange
381
- property :numberOfEpisodes
382
- property :numberOfPages
383
- property :numTracks
384
- property :nutrition
385
- property :object
386
- property :occupationalCategory
387
- property :offerCount
388
- property :offers
389
- property :openingHours
390
- property :openingHoursSpecification
391
- property :opens
392
- property :operatingSystem
393
- property :oponent
394
- property :option
395
- property :origin
396
- property :originatesFrom
397
- property :outcome
398
- property :overdosage
399
- property :overview
400
- property :ownedFrom
401
- property :ownedThrough
402
- property :owns
403
- property :parent
404
- property :parents
405
- property :participant
406
- property :partOfSeason
407
- property :partOfSystem
408
- property :partOfTVSeries
409
- property :pathophysiology
410
- property :paymentAccepted
411
- property :performer
412
- property :performerIn
413
- property :performers
414
- property :permissions
415
- property :phase
416
- property :photo
417
- property :photos
418
- property :physiologicalBenefits
419
- property :playerType
420
- property :polygon
421
- property :population
422
- property :possibleComplication
423
- property :possibleTreatment
424
- property :postalCode
425
- property :postOfficeBoxNumber
426
- property :postOp
427
- property :predecessorOf
428
- property :pregnancyCategory
429
- property :pregnancyWarning
430
- property :preOp
431
- property :preparation
432
- property :prepTime
433
- property :prescribingInfo
434
- property :prescriptionStatus
435
- property :price
436
- property :priceCurrency
437
- property :priceRange
438
- property :priceSpecification
439
- property :priceType
440
- property :priceValidUntil
441
- property :primaryImageOfPage
442
- property :primaryPrevention
443
- property :printColumn
444
- property :printEdition
445
- property :printPage
446
- property :printSection
447
- property :procedure
448
- property :procedureType
449
- property :processorRequirements
450
- property :producer
451
- property :productID
452
- property :productionCompany
453
- property :proficiencyLevel
454
- property :programmingLanguage
455
- property :programmingModel
456
- property :proprietaryName
457
- property :proteinContent
458
- property :provider
459
- property :publicationType
460
- property :publisher
461
- property :publishingPrinciples
462
- property :purpose
463
- property :qualifications
464
- property :query
465
- property :question
466
- property :rangeIncludes
467
- property :ratingCount
468
- property :ratingValue
469
- property :realEstateAgent
470
- property :recipe
471
- property :recipeCategory
472
- property :recipeCuisine
473
- property :recipeInstructions
474
- property :recipeYield
475
- property :recipient
476
- property :recognizingAuthority
477
- property :recommendationStrength
478
- property :recommendedIntake
479
- property :regionDrained
480
- property :regionsAllowed
481
- property :relatedAnatomy
482
- property :relatedCondition
483
- property :relatedDrug
484
- property :relatedLink
485
- property :relatedStructure
486
- property :relatedTherapy
487
- property :relatedTo
488
- property :releaseDate
489
- property :releaseNotes
490
- property :relevantSpecialty
491
- property :repetitions
492
- property :replacee
493
- property :replacer
494
- property :replyToUrl
495
- property :representativeOfPage
496
- property :requirements
497
- property :requiresSubscription
498
- property :responsibilities
499
- property :restPeriods
500
- property :result
501
- property :resultReview
502
- property :review
503
- property :reviewBody
504
- property :reviewCount
505
- property :reviewedBy
506
- property :reviewRating
507
- property :reviews
508
- property :riskFactor
509
- property :risks
510
- property :runsTo
511
- property :runtime
512
- property :safetyConsideration
513
- property :salaryCurrency
514
- property :sameAs
515
- property :sampleType
516
- property :saturatedFatContent
517
- property :scheduledTime
518
- property :screenshot
519
- property :season
520
- property :seasonNumber
521
- property :seasons
522
- property :secondaryPrevention
523
- property :seeks
524
- property :seller
525
- property :sender
526
- property :sensoryUnit
527
- property :serialNumber
528
- property :seriousAdverseOutcome
529
- property :servesCuisine
530
- property :servingSize
531
- property :sibling
532
- property :siblings
533
- property :signDetected
534
- property :significance
535
- property :significantLink
536
- property :significantLinks
537
- property :signOrSymptom
538
- property :skills
539
- property :sku
540
- property :sodiumContent
541
- property :softwareVersion
542
- property :source
543
- property :sourcedFrom
544
- property :sourceOrganization
545
- property :spatial
546
- property :specialCommitments
547
- property :specialty
548
- property :sponsor
549
- property :sportsActivityLocation
550
- property :sportsEvent
551
- property :sportsTeam
552
- property :spouse
553
- property :stage
554
- property :stageAsNumber
555
- property :startDate
556
- property :startTime
557
- property :status
558
- property :storageRequirements
559
- property :streetAddress
560
- property :strengthUnit
561
- property :strengthValue
562
- property :structuralClass
563
- property :study
564
- property :studyDesign
565
- property :studyLocation
566
- property :studySubject
567
- property :subEvent
568
- property :subEvents
569
- property :subStageSuffix
570
- property :subStructure
571
- property :subTest
572
- property :subtype
573
- property :successorOf
574
- property :sugarContent
575
- property :suggestedGender
576
- property :suggestedMaxAge
577
- property :suggestedMinAge
578
- property :superEvent
579
- property :supplyTo
580
- property :targetDescription
581
- property :targetName
582
- property :targetPlatform
583
- property :targetPopulation
584
- property :targetProduct
585
- property :targetUrl
586
- property :taxID
587
- property :telephone
588
- property :temporal
589
- property :text
590
- property :thumbnail
591
- property :thumbnailUrl
592
- property :tickerSymbol
593
- property :timeRequired
594
- property :tissueSample
595
- property :title
596
- property :toLocation
597
- property :totalTime
598
- property :track
599
- property :tracks
600
- property :trailer
601
- property :transcript
602
- property :transFatContent
603
- property :transmissionMethod
604
- property :trialDesign
605
- property :tributary
606
- property :typeOfGood
607
- property :typicalAgeRange
608
- property :typicalTest
609
- property :unitCode
610
- property :unsaturatedFatContent
611
- property :uploadDate
612
- property :url
613
- property :usedToDiagnose
614
- property :usesDevice
615
- property :validFrom
616
- property :validThrough
617
- property :value
618
- property :valueAddedTaxIncluded
619
- property :valueReference
620
- property :vatID
621
- property :vendor
622
- property :version
623
- property :video
624
- property :videoFrameSize
625
- property :videoQuality
626
- property :warning
627
- property :warranty
628
- property :warrantyPromise
629
- property :warrantyScope
630
- property :weight
631
- property :width
632
- property :winner
633
- property :wordCount
634
- property :workHours
635
- property :workload
636
- property :workLocation
637
- property :worksFor
638
- property :worstRating
4
+ class SCHEMA < StrictVocabulary("http://schema.org/")
639
5
 
640
- private
641
- def self.generate
642
- require 'addressable/uri'
643
- require 'rdf/rdfa'
644
- v = Graph.load("http://schema.org/docs/schema_org_rdfa.html", :format => :rdfa)
6
+ # Class definitions
7
+ property :APIReference, :label => 'APIReference', :comment =>
8
+ %(Reference documentation for application programming interfaces
9
+ \(APIs\).)
10
+ property :AboutPage, :label => 'AboutPage', :comment =>
11
+ %(Web page type: About page.)
12
+ property :AcceptAction, :label => 'AcceptAction', :comment =>
13
+ %(The act of committing to/adopting an object.<p>Related
14
+ actions:</p><ul><li><a
15
+ href="http://schema.org/RejectAction">RejectAction</a>: The
16
+ antagonym of AcceptAction.</li></ul>)
17
+ property :AccountingService, :label => 'AccountingService', :comment =>
18
+ %(Accountancy business.)
19
+ property :AchieveAction, :label => 'AchieveAction', :comment =>
20
+ %(The act of accomplishing something via previous efforts. It is
21
+ an instantaneous action rather than an ongoing process.)
22
+ property :Action, :label => 'Action', :comment =>
23
+ %(An action performed by a direct agent and indirect
24
+ participants upon a direct object. Optionally happens at a
25
+ location with the help of an inanimate instrument. The
26
+ execution of the action may produce a result. Specific action
27
+ sub-type documentation specifies the exact expectation of each
28
+ argument/role.)
29
+ property :AddAction, :label => 'AddAction', :comment =>
30
+ %(The act of editing by adding an object to a collection.)
31
+ property :AdministrativeArea, :label => 'AdministrativeArea', :comment =>
32
+ %(A geographical region under the jurisdiction of a particular
33
+ government.)
34
+ property :AdultEntertainment, :label => 'AdultEntertainment', :comment =>
35
+ %(An adult entertainment establishment.)
36
+ property :AggregateOffer, :label => 'AggregateOffer', :comment =>
37
+ %(When a single product that has different offers \(for example,
38
+ the same pair of shoes is offered by different merchants\),
39
+ then AggregateOffer can be used.)
40
+ property :AggregateRating, :label => 'AggregateRating', :comment =>
41
+ %(The average rating based on multiple ratings or reviews.)
42
+ property :AgreeAction, :label => 'AgreeAction', :comment =>
43
+ %(The act of expressing a consistency of opinion with the
44
+ object. An agent agrees to/about an object \(a proposition,
45
+ topic or theme\) with participants.)
46
+ property :Airport, :label => 'Airport', :comment =>
47
+ %(An airport.)
48
+ property :AlignmentObject, :label => 'AlignmentObject', :comment =>
49
+ %(An intangible item that describes an alignment between a
50
+ learning resource and a node in an educational framework.)
51
+ property :AllocateAction, :label => 'AllocateAction', :comment =>
52
+ %(The act of organizing tasks/objects/events by associating
53
+ resources to it.)
54
+ property :AmusementPark, :label => 'AmusementPark', :comment =>
55
+ %(An amusement park.)
56
+ property :AnatomicalStructure, :label => 'AnatomicalStructure', :comment =>
57
+ %(Any part of the human body, typically a component of an
58
+ anatomical system. Organs, tissues, and cells are all
59
+ anatomical structures.)
60
+ property :AnatomicalSystem, :label => 'AnatomicalSystem', :comment =>
61
+ %(An anatomical system is a group of anatomical structures that
62
+ work together to perform a certain task. Anatomical systems,
63
+ such as organ systems, are one organizing principle of
64
+ anatomy, and can includes circulatory, digestive, endocrine,
65
+ integumentary, immune, lymphatic, muscular, nervous,
66
+ reproductive, respiratory, skeletal, urinary, vestibular, and
67
+ other systems.)
68
+ property :AnimalShelter, :label => 'AnimalShelter', :comment =>
69
+ %(Animal shelter.)
70
+ property :ApartmentComplex, :label => 'ApartmentComplex', :comment =>
71
+ %(Residence type: Apartment complex.)
72
+ property :AppendAction, :label => 'AppendAction', :comment =>
73
+ %(The act of inserting at the end if an ordered collection.)
74
+ property :ApplyAction, :label => 'ApplyAction', :comment =>
75
+ %(The act of registering to an organization/service without the
76
+ guarantee to receive it. NOTE\(goto\): should this be under
77
+ InteractAction instead?<p>Related actions:</p><ul><li><a
78
+ href="http://schema.org/RegisterAction">RegisterAction</a>:
79
+ Unlike RegisterAction, ApplyAction has no guarantees that the
80
+ application will be accepted.</li></ul>)
81
+ property :ApprovedIndication, :label => 'ApprovedIndication', :comment =>
82
+ %(An indication for a medical therapy that has been formally
83
+ specified or approved by a regulatory body that regulates use
84
+ of the therapy; for example, the US FDA approves indications
85
+ for most drugs in the US.)
86
+ property :Aquarium, :label => 'Aquarium', :comment =>
87
+ %(Aquarium.)
88
+ property :ArriveAction, :label => 'ArriveAction', :comment =>
89
+ %(The act of arriving at a place. An agent arrives at a
90
+ destination from an fromLocation, optionally with
91
+ participants.)
92
+ property :ArtGallery, :label => 'ArtGallery', :comment =>
93
+ %(An art gallery.)
94
+ property :Artery, :label => 'Artery', :comment =>
95
+ %(A type of blood vessel that specifically carries blood away
96
+ from the heart.)
97
+ property :Article, :label => 'Article', :comment =>
98
+ %(An article, such as a news article or piece of investigative
99
+ report. Newspapers and magazines have articles of many
100
+ different types and this is intended to cover them all.)
101
+ property :AskAction, :label => 'AskAction', :comment =>
102
+ %(The act of posing a question / favor to someone.<p>Related
103
+ actions:</p><ul><li><a
104
+ href="http://schema.org/ReplyAction">ReplyAction</a>: Appears
105
+ generally as a response to AskAction.</li></ul>)
106
+ property :AssessAction, :label => 'AssessAction', :comment =>
107
+ %(The act of forming one's opinion, reaction or sentiment.)
108
+ property :AssignAction, :label => 'AssignAction', :comment =>
109
+ %(The act of allocating an action/event/task to some destination
110
+ \(someone or something\).)
111
+ property :Attorney, :label => 'Attorney', :comment =>
112
+ %(Professional service: Attorney.)
113
+ property :Audience, :label => 'Audience', :comment =>
114
+ %(Intended audience for an item, i.e. the group for whom the
115
+ item was created.)
116
+ property :AudioObject, :label => 'AudioObject', :comment =>
117
+ %(An audio file.)
118
+ property :AuthorizeAction, :label => 'AuthorizeAction', :comment =>
119
+ %(The act of granting permission to an object.)
120
+ property :AutoBodyShop, :label => 'AutoBodyShop', :comment =>
121
+ %(Auto body shop.)
122
+ property :AutoDealer, :label => 'AutoDealer', :comment =>
123
+ %(An car dealership.)
124
+ property :AutoPartsStore, :label => 'AutoPartsStore', :comment =>
125
+ %(An auto parts store.)
126
+ property :AutoRental, :label => 'AutoRental', :comment =>
127
+ %(A car rental business.)
128
+ property :AutoRepair, :label => 'AutoRepair', :comment =>
129
+ %(Car repair business.)
130
+ property :AutoWash, :label => 'AutoWash', :comment =>
131
+ %(A car wash business.)
132
+ property :AutomatedTeller, :label => 'AutomatedTeller', :comment =>
133
+ %(ATM/cash machine.)
134
+ property :AutomotiveBusiness, :label => 'AutomotiveBusiness', :comment =>
135
+ %(Car repair, sales, or parts.)
136
+ property :Bakery, :label => 'Bakery', :comment =>
137
+ %(A bakery.)
138
+ property :BankOrCreditUnion, :label => 'BankOrCreditUnion', :comment =>
139
+ %(Bank or credit union.)
140
+ property :BarOrPub, :label => 'BarOrPub', :comment =>
141
+ %(A bar or pub.)
142
+ property :Beach, :label => 'Beach', :comment =>
143
+ %(Beach.)
144
+ property :BeautySalon, :label => 'BeautySalon', :comment =>
145
+ %(Beauty salon.)
146
+ property :BedAndBreakfast, :label => 'BedAndBreakfast', :comment =>
147
+ %(Bed and breakfast.)
148
+ property :BefriendAction, :label => 'BefriendAction', :comment =>
149
+ %(The act of forming a personal connection with someone
150
+ \(object\) mutually/bidirectionally/symmetrically.<p>Related
151
+ actions:</p><ul><li><a
152
+ href="http://schema.org/FollowAction">FollowAction</a>: Unlike
153
+ FollowAction, BefriendAction implies that the connection is
154
+ reciprocal.</li></ul>)
155
+ property :BikeStore, :label => 'BikeStore', :comment =>
156
+ %(A bike store.)
157
+ property :Blog, :label => 'Blog', :comment =>
158
+ %(A blog)
159
+ property :BlogPosting, :label => 'BlogPosting', :comment =>
160
+ %(A blog post.)
161
+ property :BloodTest, :label => 'BloodTest', :comment =>
162
+ %(A medical test performed on a sample of a patient's blood.)
163
+ property :BodyOfWater, :label => 'BodyOfWater', :comment =>
164
+ %(A body of water, such as a sea, ocean, or lake.)
165
+ property :Bone, :label => 'Bone', :comment =>
166
+ %(Rigid connective tissue that comprises up the skeletal
167
+ structure of the human body.)
168
+ property :Book, :label => 'Book', :comment =>
169
+ %(A book.)
170
+ property :BookFormatType, :label => 'BookFormatType', :comment =>
171
+ %(The publication format of the book.)
172
+ property :BookStore, :label => 'BookStore', :comment =>
173
+ %(A bookstore.)
174
+ property :BookmarkAction, :label => 'BookmarkAction', :comment =>
175
+ %(An agent bookmarks/flags/labels/tags/marks an object.)
176
+ property :Boolean, :label => 'Boolean', :comment =>
177
+ %(Boolean: True or False.)
178
+ property :BorrowAction, :label => 'BorrowAction', :comment =>
179
+ %(The act of obtaining an object under an agreement to return it
180
+ at a later date. Reciprocal of LendAction.<p>Related
181
+ actions:</p><ul><li><a
182
+ href="http://schema.org/LendAction">LendAction</a>: Reciprocal
183
+ of BorrowAction.</li></ul>)
184
+ property :BowlingAlley, :label => 'BowlingAlley', :comment =>
185
+ %(A bowling alley.)
186
+ property :BrainStructure, :label => 'BrainStructure', :comment =>
187
+ %(Any anatomical structure which pertains to the soft nervous
188
+ tissue functioning as the coordinating center of sensation and
189
+ intellectual and nervous activity.)
190
+ property :Brand, :label => 'Brand', :comment =>
191
+ %(A brand is a name used by an organization or business person
192
+ for labeling a product, product group, or similar.)
193
+ property :Brewery, :label => 'Brewery', :comment =>
194
+ %(Brewery.)
195
+ property :BroadcastEvent, :label => 'BroadcastEvent', :comment =>
196
+ %(An over the air or online broadcast event.)
197
+ property :BroadcastService, :label => 'BroadcastService', :comment =>
198
+ %(A delivery service through which content is provided via
199
+ broadcast over the air or online.)
200
+ property :BuddhistTemple, :label => 'BuddhistTemple', :comment =>
201
+ %(A Buddhist temple.)
202
+ property :BusStation, :label => 'BusStation', :comment =>
203
+ %(A bus station.)
204
+ property :BusStop, :label => 'BusStop', :comment =>
205
+ %(A bus stop.)
206
+ property :BusinessAudience, :label => 'BusinessAudience', :comment =>
207
+ %(A set of characteristics belonging to businesses, e.g. who
208
+ compose an item's target audience.)
209
+ property :BusinessEntityType, :label => 'BusinessEntityType', :comment =>
210
+ %(A business entity type is a conceptual entity representing the
211
+ legal form, the size, the main line of business, the position
212
+ in the value chain, or any combination thereof, of an
213
+ organization or business person. Commonly used values:
214
+ http://purl.org/goodrelations/v1#Business
215
+ http://purl.org/goodrelations/v1#Enduser
216
+ http://purl.org/goodrelations/v1#PublicInstitution
217
+ http://purl.org/goodrelations/v1#Reseller)
218
+ property :BusinessEvent, :label => 'BusinessEvent', :comment =>
219
+ %(Event type: Business event.)
220
+ property :BusinessFunction, :label => 'BusinessFunction', :comment =>
221
+ %(The business function specifies the type of activity or access
222
+ \(i.e., the bundle of rights\) offered by the organization or
223
+ business person through the offer. Typical are sell, rental or
224
+ lease, maintenance or repair, manufacture / produce, recycle /
225
+ dispose, engineering / construction, or installation.
226
+ Proprietary specifications of access rights are also instances
227
+ of this class. Commonly used values:
228
+ http://purl.org/goodrelations/v1#ConstructionInstallation
229
+ http://purl.org/goodrelations/v1#Dispose
230
+ http://purl.org/goodrelations/v1#LeaseOut
231
+ http://purl.org/goodrelations/v1#Maintain
232
+ http://purl.org/goodrelations/v1#ProvideService
233
+ http://purl.org/goodrelations/v1#Repair
234
+ http://purl.org/goodrelations/v1#Sell
235
+ http://purl.org/goodrelations/v1#Buy)
236
+ property :BuyAction, :label => 'BuyAction', :comment =>
237
+ %(The act of giving money to a seller in exchange for goods or
238
+ services rendered. An agent buys an object, product, or
239
+ service from a seller for a price. Reciprocal of SellAction.)
240
+ property :CafeOrCoffeeShop, :label => 'CafeOrCoffeeShop', :comment =>
241
+ %(A cafe or coffee shop.)
242
+ property :Campground, :label => 'Campground', :comment =>
243
+ %(A campground.)
244
+ property :Canal, :label => 'Canal', :comment =>
245
+ %(A canal, like the Panama Canal)
246
+ property :CancelAction, :label => 'CancelAction', :comment =>
247
+ %(The act of asserting that a future event/action is no longer
248
+ going to happen.<p>Related actions:</p><ul><li><a
249
+ href="http://schema.org/ConfirmAction">ConfirmAction</a>: The
250
+ antagonym of CancelAction.</li></ul>)
251
+ property :Casino, :label => 'Casino', :comment =>
252
+ %(A casino.)
253
+ property :CatholicChurch, :label => 'CatholicChurch', :comment =>
254
+ %(A Catholic church.)
255
+ property :Cemetery, :label => 'Cemetery', :comment =>
256
+ %(A graveyard.)
257
+ property :CheckAction, :label => 'CheckAction', :comment =>
258
+ %(An agent inspects/determines/investigates/inquire or examine
259
+ an object's accuracy/quality/condition or state.)
260
+ property :CheckInAction, :label => 'CheckInAction', :comment =>
261
+ %(The act of an agent communicating \(service provider, social
262
+ media, etc\) their arrival by registering/confirming for a
263
+ previously reserved service \(e.g. flight check in\) or at a
264
+ place \(e.g. hotel\), possibly resulting in a result
265
+ \(boarding pass, etc\).<p>Related actions:</p><ul><li><a
266
+ href="http://schema.org/CheckOutAction">CheckOutAction</a>:
267
+ The antagonym of CheckInAction.</li><li><a
268
+ href="http://schema.org/ArriveAction">ArriveAction</a>: Unlike
269
+ ArriveAction, CheckInAction implies that the agent is
270
+ informing/confirming the start of a previously reserved
271
+ service.</li><li><a
272
+ href="http://schema.org/ConfirmAction">ConfirmAction</a>:
273
+ Unlike ConfirmAction, CheckInAction implies that the agent is
274
+ informing/confirming the *start* of a previously reserved
275
+ service rather than its validity/existance.</li></ul>)
276
+ property :CheckOutAction, :label => 'CheckOutAction', :comment =>
277
+ %(The act of an agent communicating \(service provider, social
278
+ media, etc\) their departure of a previously reserved service
279
+ \(e.g. flight check in\) or place \(e.g. hotel\).<p>Related
280
+ actions:</p><ul><li><a
281
+ href="http://schema.org/CheckInAction">CheckInAction</a>: The
282
+ antagonym of CheckOutAction.</li><li><a
283
+ href="http://schema.org/DepartAction">DepartAction</a>: Unlike
284
+ DepartAction, CheckOutAction implies that the agent is
285
+ informing/confirming the end of a previously reserved
286
+ service.</li><li><a
287
+ href="http://schema.org/CancelAction">CancelAction</a>: Unlike
288
+ CancelAction, CheckOutAction implies that the agent is
289
+ informing/confirming the end of a previously reserved
290
+ service.</li></ul>)
291
+ property :CheckoutPage, :label => 'CheckoutPage', :comment =>
292
+ %(Web page type: Checkout page.)
293
+ property :ChildCare, :label => 'ChildCare', :comment =>
294
+ %(A Childcare center.)
295
+ property :ChildrensEvent, :label => 'ChildrensEvent', :comment =>
296
+ %(Event type: Children's event.)
297
+ property :ChooseAction, :label => 'ChooseAction', :comment =>
298
+ %(The act of expressing a preference from a set of options or a
299
+ large or unbounded set of choices/options.)
300
+ property :Church, :label => 'Church', :comment =>
301
+ %(A church.)
302
+ property :City, :label => 'City', :comment =>
303
+ %(A city or town.)
304
+ property :CityHall, :label => 'CityHall', :comment =>
305
+ %(A city hall.)
306
+ property :CivicStructure, :label => 'CivicStructure', :comment =>
307
+ %(A public structure, such as a town hall or concert hall.)
308
+ property :Class, :label => 'Class', :comment =>
309
+ %(A class, also often called a 'Type'; equivalent to rdfs:Class.)
310
+ property :Clip, :label => 'Clip', :comment =>
311
+ %(A short TV or radio program or a segment/part of a program.)
312
+ property :ClothingStore, :label => 'ClothingStore', :comment =>
313
+ %(A clothing store.)
314
+ property :Code, :label => 'Code', :comment =>
315
+ %(Computer programming source code. Example: Full \(compile
316
+ ready\) solutions, code snippet samples, scripts, templates.)
317
+ property :CollectionPage, :label => 'CollectionPage', :comment =>
318
+ %(Web page type: Collection page.)
319
+ property :CollegeOrUniversity, :label => 'CollegeOrUniversity', :comment =>
320
+ %(A college, university, or other third-level educational
321
+ institution.)
322
+ property :ComedyClub, :label => 'ComedyClub', :comment =>
323
+ %(A comedy club.)
324
+ property :ComedyEvent, :label => 'ComedyEvent', :comment =>
325
+ %(Event type: Comedy event.)
326
+ property :Comment, :label => 'Comment', :comment =>
327
+ %(A comment on an item - for example, a comment on a blog post.
328
+ The comment's content is expressed via the "text" property,
329
+ and its topic via "about", properties shared with all
330
+ CreativeWorks.)
331
+ property :CommentAction, :label => 'CommentAction', :comment =>
332
+ %(The act of generating a comment about a subject.)
333
+ property :CommunicateAction, :label => 'CommunicateAction', :comment =>
334
+ %(The act of conveying information to another person via a
335
+ communication medium \(instrument\) such as speech, email, or
336
+ telephone conversation.)
337
+ property :ComputerStore, :label => 'ComputerStore', :comment =>
338
+ %(A computer store.)
339
+ property :ConfirmAction, :label => 'ConfirmAction', :comment =>
340
+ %(The act of notifying someone that a future event/action is
341
+ going to happen as expected.<p>Related actions:</p><ul><li><a
342
+ href="http://schema.org/CancelAction">CancelAction</a>: The
343
+ antagonym of ConfirmAction.</li></ul>)
344
+ property :ConsumeAction, :label => 'ConsumeAction', :comment =>
345
+ %(The act of ingesting information/resources/food.)
346
+ property :ContactPage, :label => 'ContactPage', :comment =>
347
+ %(Web page type: Contact page.)
348
+ property :ContactPoint, :label => 'ContactPoint', :comment =>
349
+ %(A contact point&#x2014;for example, a Customer Complaints
350
+ department.)
351
+ property :ContactPointOption, :label => 'ContactPointOption', :comment =>
352
+ %(Enumerated options related to a ContactPoint)
353
+ property :Continent, :label => 'Continent', :comment =>
354
+ %(One of the continents \(for example, Europe or Africa\).)
355
+ property :ConvenienceStore, :label => 'ConvenienceStore', :comment =>
356
+ %(A convenience store.)
357
+ property :CookAction, :label => 'CookAction', :comment =>
358
+ %(The act of producing/preparing food.)
359
+ property :Corporation, :label => 'Corporation', :comment =>
360
+ %(Organization: A business corporation.)
361
+ property :Country, :label => 'Country', :comment =>
362
+ %(A country.)
363
+ property :Courthouse, :label => 'Courthouse', :comment =>
364
+ %(A courthouse.)
365
+ property :CreateAction, :label => 'CreateAction', :comment =>
366
+ %(The act of deliberately creating/producing/generating/building
367
+ a result out of the agent.)
368
+ property :CreativeWork, :label => 'CreativeWork', :comment =>
369
+ %(The most generic kind of creative work, including books,
370
+ movies, photographs, software programs, etc.)
371
+ property :CreditCard, :label => 'CreditCard', :comment =>
372
+ %(A credit or debit card type as a standardized procedure for
373
+ transferring the monetary amount for a purchase. Commonly used
374
+ values: http://purl.org/goodrelations/v1#AmericanExpress
375
+ http://purl.org/goodrelations/v1#DinersClub
376
+ http://purl.org/goodrelations/v1#Discover
377
+ http://purl.org/goodrelations/v1#JCB
378
+ http://purl.org/goodrelations/v1#MasterCard
379
+ http://purl.org/goodrelations/v1#VISA)
380
+ property :Crematorium, :label => 'Crematorium', :comment =>
381
+ %(A crematorium.)
382
+ property :DDxElement, :label => 'DDxElement', :comment =>
383
+ %(An alternative, closely-related condition typically considered
384
+ later in the differential diagnosis process along with the
385
+ signs that are used to distinguish it.)
386
+ property :DanceEvent, :label => 'DanceEvent', :comment =>
387
+ %(Event type: A social dance.)
388
+ property :DanceGroup, :label => 'DanceGroup', :comment =>
389
+ %(A dance group&#x2014;for example, the Alvin Ailey Dance
390
+ Theater or Riverdance.)
391
+ property :DataCatalog, :label => 'DataCatalog', :comment =>
392
+ %(A collection of datasets.)
393
+ property :DataDownload, :label => 'DataDownload', :comment =>
394
+ %(A dataset in downloadable form.)
395
+ property :DataType, :label => 'DataType', :comment =>
396
+ %(The basic data types such as Integers, Strings, etc.)
397
+ property :Dataset, :label => 'Dataset', :comment =>
398
+ %(A body of structured information describing some topic\(s\) of
399
+ interest.)
400
+ property :Date, :label => 'Date', :comment =>
401
+ %(A date value in <a
402
+ href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date
403
+ format</a>.)
404
+ property :DateTime, :label => 'DateTime', :comment =>
405
+ %(A combination of date and time of day in the form
406
+ [-]CCYY-MM-DDThh:mm:ss[Z|\(+|-\)hh:mm] \(see Chapter 5.4 of
407
+ ISO 8601\).)
408
+ property :DayOfWeek, :label => 'DayOfWeek', :comment =>
409
+ %(The day of the week, e.g. used to specify to which day the
410
+ opening hours of an OpeningHoursSpecification refer. Commonly
411
+ used values: http://purl.org/goodrelations/v1#Monday
412
+ http://purl.org/goodrelations/v1#Tuesday
413
+ http://purl.org/goodrelations/v1#Wednesday
414
+ http://purl.org/goodrelations/v1#Thursday
415
+ http://purl.org/goodrelations/v1#Friday
416
+ http://purl.org/goodrelations/v1#Saturday
417
+ http://purl.org/goodrelations/v1#Sunday
418
+ http://purl.org/goodrelations/v1#PublicHolidays)
419
+ property :DaySpa, :label => 'DaySpa', :comment =>
420
+ %(A day spa.)
421
+ property :DefenceEstablishment, :label => 'DefenceEstablishment', :comment =>
422
+ %(A defence establishment, such as an army or navy base.)
423
+ property :DeleteAction, :label => 'DeleteAction', :comment =>
424
+ %(The act of editing a recipient by removing one of its objects.)
425
+ property :DeliveryChargeSpecification, :label => 'DeliveryChargeSpecification', :comment =>
426
+ %(The price for the delivery of an offer using a particular
427
+ delivery method.)
428
+ property :DeliveryEvent, :label => 'DeliveryEvent', :comment =>
429
+ %(An event involving the delivery of an item.)
430
+ property :DeliveryMethod, :label => 'DeliveryMethod', :comment =>
431
+ %(A delivery method is a standardized procedure for transferring
432
+ the product or service to the destination of fulfilment chosen
433
+ by the customer. Delivery methods are characterized by the
434
+ means of transportation used, and by the organization or group
435
+ that is the contracting party for the sending organization or
436
+ person. Commonly used values:
437
+ http://purl.org/goodrelations/v1#DeliveryModeDirectDownload
438
+ http://purl.org/goodrelations/v1#DeliveryModeFreight
439
+ http://purl.org/goodrelations/v1#DeliveryModeMail
440
+ http://purl.org/goodrelations/v1#DeliveryModeOwnFleet
441
+ http://purl.org/goodrelations/v1#DeliveryModePickUp
442
+ http://purl.org/goodrelations/v1#DHL
443
+ http://purl.org/goodrelations/v1#FederalExpress
444
+ http://purl.org/goodrelations/v1#UPS)
445
+ property :Demand, :label => 'Demand', :comment =>
446
+ %(A demand entity represents the public, not necessarily
447
+ binding, not necessarily exclusive, announcement by an
448
+ organization or person to seek a certain type of goods or
449
+ services. For describing demand using this type, the very same
450
+ properties used for Offer apply.)
451
+ property :Dentist, :label => 'Dentist', :comment =>
452
+ %(A dentist.)
453
+ property :DepartAction, :label => 'DepartAction', :comment =>
454
+ %(The act of departing from a place. An agent departs from an
455
+ fromLocation for a destination, optionally with participants.)
456
+ property :DepartmentStore, :label => 'DepartmentStore', :comment =>
457
+ %(A department store.)
458
+ property :DiagnosticLab, :label => 'DiagnosticLab', :comment =>
459
+ %(A medical laboratory that offers on-site or off-site
460
+ diagnostic services.)
461
+ property :DiagnosticProcedure, :label => 'DiagnosticProcedure', :comment =>
462
+ %(A medical procedure intended primarly for diagnostic, as
463
+ opposed to therapeutic, purposes.)
464
+ property :Diet, :label => 'Diet', :comment =>
465
+ %(A strategy of regulating the intake of food to achieve or
466
+ maintain a specific health-related goal.)
467
+ property :DietarySupplement, :label => 'DietarySupplement', :comment =>
468
+ %(A product taken by mouth that contains a dietary ingredient
469
+ intended to supplement the diet. Dietary ingredients may
470
+ include vitamins, minerals, herbs or other botanicals, amino
471
+ acids, and substances such as enzymes, organ tissues,
472
+ glandulars and metabolites.)
473
+ property :DisagreeAction, :label => 'DisagreeAction', :comment =>
474
+ %(The act of expressing a difference of opinion with the object.
475
+ An agent disagrees to/about an object \(a proposition, topic
476
+ or theme\) with participants.)
477
+ property :DiscoverAction, :label => 'DiscoverAction', :comment =>
478
+ %(The act of discovering/finding an object.)
479
+ property :DislikeAction, :label => 'DislikeAction', :comment =>
480
+ %(The act of expressing a negative sentiment about the object.
481
+ An agent dislikes an object \(a proposition, topic or theme\)
482
+ with participants.)
483
+ property :Distance, :label => 'Distance', :comment =>
484
+ %(Properties that take Distances as values are of the form
485
+ '&lt;Number&gt; &lt;Length unit of measure&gt;'. E.g., '7 ft')
486
+ property :DonateAction, :label => 'DonateAction', :comment =>
487
+ %(The act of providing goods, services, or money without
488
+ compensation, often for philanthropic reasons.)
489
+ property :DoseSchedule, :label => 'DoseSchedule', :comment =>
490
+ %(A specific dosing schedule for a drug or supplement.)
491
+ property :DownloadAction, :label => 'DownloadAction', :comment =>
492
+ %(The act of downloading an object.)
493
+ property :DrawAction, :label => 'DrawAction', :comment =>
494
+ %(The act of producing a visual/graphical representation of an
495
+ object, typically with a pen/pencil and paper as instruments.)
496
+ property :DrinkAction, :label => 'DrinkAction', :comment =>
497
+ %(The act of swallowing liquids.)
498
+ property :Drug, :label => 'Drug', :comment =>
499
+ %(A chemical or biologic substance, used as a medical therapy,
500
+ that has a physiological effect on an organism.)
501
+ property :DrugClass, :label => 'DrugClass', :comment =>
502
+ %(A class of medical drugs, e.g., statins. Classes can represent
503
+ general pharmacological class, common mechanisms of action,
504
+ common physiological effects, etc.)
505
+ property :DrugCost, :label => 'DrugCost', :comment =>
506
+ %(The cost per unit of a medical drug. Note that this type is
507
+ not meant to represent the price in an offer of a drug for
508
+ sale; see the Offer type for that. This type will typically be
509
+ used to tag wholesale or average retail cost of a drug, or
510
+ maximum reimbursable cost. Costs of medical drugs vary widely
511
+ depending on how and where they are paid for, so while this
512
+ type captures some of the variables, costs should be used with
513
+ caution by consumers of this schema's markup.)
514
+ property :DrugCostCategory, :label => 'DrugCostCategory', :comment =>
515
+ %(Enumerated categories of medical drug costs.)
516
+ property :DrugLegalStatus, :label => 'DrugLegalStatus', :comment =>
517
+ %(The legal availability status of a medical drug.)
518
+ property :DrugPregnancyCategory, :label => 'DrugPregnancyCategory', :comment =>
519
+ %(Categories that represent an assessment of the risk of fetal
520
+ injury due to a drug or pharmaceutical used as directed by the
521
+ mother during pregnancy.)
522
+ property :DrugPrescriptionStatus, :label => 'DrugPrescriptionStatus', :comment =>
523
+ %(Indicates whether this drug is available by prescription or
524
+ over-the-counter.)
525
+ property :DrugStrength, :label => 'DrugStrength', :comment =>
526
+ %(A specific strength in which a medical drug is available in a
527
+ specific country.)
528
+ property :DryCleaningOrLaundry, :label => 'DryCleaningOrLaundry', :comment =>
529
+ %(A dry-cleaning business.)
530
+ property :Duration, :label => 'Duration', :comment =>
531
+ %(Quantity: Duration \(use <a
532
+ href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration
533
+ format</a>\).)
534
+ property :EatAction, :label => 'EatAction', :comment =>
535
+ %(The act of swallowing solid objects.)
536
+ property :EducationEvent, :label => 'EducationEvent', :comment =>
537
+ %(Event type: Education event.)
538
+ property :EducationalAudience, :label => 'EducationalAudience', :comment =>
539
+ %(An EducationalAudience)
540
+ property :EducationalOrganization, :label => 'EducationalOrganization', :comment =>
541
+ %(An educational organization.)
542
+ property :Electrician, :label => 'Electrician', :comment =>
543
+ %(An electrician.)
544
+ property :ElectronicsStore, :label => 'ElectronicsStore', :comment =>
545
+ %(An electronics store.)
546
+ property :ElementarySchool, :label => 'ElementarySchool', :comment =>
547
+ %(An elementary school.)
548
+ property :Embassy, :label => 'Embassy', :comment =>
549
+ %(An embassy.)
550
+ property :EmergencyService, :label => 'EmergencyService', :comment =>
551
+ %(An emergency service, such as a fire station or ER.)
552
+ property :EmploymentAgency, :label => 'EmploymentAgency', :comment =>
553
+ %(An employment agency.)
554
+ property :EndorseAction, :label => 'EndorseAction', :comment =>
555
+ %(An agent approves/certifies/likes/supports/sanction an object.)
556
+ property :Energy, :label => 'Energy', :comment =>
557
+ %(Properties that take Enerygy as values are of the form
558
+ '&lt;Number&gt; &lt;Energy unit of measure&gt;')
559
+ property :EntertainmentBusiness, :label => 'EntertainmentBusiness', :comment =>
560
+ %(A business providing entertainment.)
561
+ property :Enumeration, :label => 'Enumeration', :comment =>
562
+ %(Lists or enumerations&#x2014;for example, a list of cuisines
563
+ or music genres, etc.)
564
+ property :Episode, :label => 'Episode', :comment =>
565
+ %(A TV or radio episode which can be part of a series or season.)
566
+ property :Event, :label => 'Event', :comment =>
567
+ %(An event happening at a certain time and location, such as a
568
+ concert, lecture, or festival. Ticketing information may be
569
+ added via the 'offers' property. Repeated events may be
570
+ structured as separate Event objects.)
571
+ property :EventStatusType, :label => 'EventStatusType', :comment =>
572
+ %(EventStatusType is an enumeration type whose instances
573
+ represent several states that an Event may be in.)
574
+ property :EventVenue, :label => 'EventVenue', :comment =>
575
+ %(An event venue.)
576
+ property :ExerciseAction, :label => 'ExerciseAction', :comment =>
577
+ %(The act of participating in exertive activity for the purposes
578
+ of improving health and fitness)
579
+ property :ExerciseGym, :label => 'ExerciseGym', :comment =>
580
+ %(A gym.)
581
+ property :ExercisePlan, :label => 'ExercisePlan', :comment =>
582
+ %(Fitness-related activity designed for a specific
583
+ health-related purpose, including defined exercise routines as
584
+ well as activity prescribed by a clinician.)
585
+ property :FastFoodRestaurant, :label => 'FastFoodRestaurant', :comment =>
586
+ %(A fast-food restaurant.)
587
+ property :Festival, :label => 'Festival', :comment =>
588
+ %(Event type: Festival.)
589
+ property :FilmAction, :label => 'FilmAction', :comment =>
590
+ %(The act of capturing sound and moving images on film, video,
591
+ or digitally.)
592
+ property :FinancialService, :label => 'FinancialService', :comment =>
593
+ %(Financial services business.)
594
+ property :FindAction, :label => 'FindAction', :comment =>
595
+ %(The act of finding an object.<p>Related actions:</p><ul><li><a
596
+ href="http://schema.org/SearchAction">SearchAction</a>:
597
+ FindAction is generally lead by a SearchAction, but not
598
+ necessarily.</li></ul>)
599
+ property :FireStation, :label => 'FireStation', :comment =>
600
+ %(A fire station. With firemen.)
601
+ property :Float, :label => 'Float', :comment =>
602
+ %(Data type: Floating number.)
603
+ property :Florist, :label => 'Florist', :comment =>
604
+ %(A florist.)
605
+ property :FollowAction, :label => 'FollowAction', :comment =>
606
+ %(The act of forming a personal connection with
607
+ someone/something \(object\) unidirectionally/asymmetrically
608
+ to get updates polled from.<p>Related actions:</p><ul><li><a
609
+ href="http://schema.org/BefriendAction">BefriendAction</a>:
610
+ Unlike BefriendAction, FollowAction implies that the
611
+ connection is *not* necessarily reciprocal.</li><li><a
612
+ href="http://schema.org/SubscribeAction">SubscribeAction</a>:
613
+ Unlike SubscribeAction, FollowAction implies that the follower
614
+ acts as an active agent constantly/actively polling for
615
+ updates.</li><li><a
616
+ href="http://schema.org/RegisterAction">RegisterAction</a>:
617
+ Unlike RegisterAction, FollowAction implies that the agent is
618
+ interested in continuing receiving updates from the
619
+ object.</li><li><a
620
+ href="http://schema.org/JoinAction">JoinAction</a>: Unlike
621
+ JoinAction, FollowAction implies that the agent is interested
622
+ in getting updates from the object.</li><li><a
623
+ href="http://schema.org/TrackAction">TrackAction</a>: Unlike
624
+ TrackAction, FollowAction refers to the polling of updates of
625
+ all aspects of animate objects rather than the location of
626
+ inanimate objects \(e.g. you track a package, but you don't
627
+ follow it\).</li></ul>)
628
+ property :FoodEstablishment, :label => 'FoodEstablishment', :comment =>
629
+ %(A food-related business.)
630
+ property :FoodEvent, :label => 'FoodEvent', :comment =>
631
+ %(Event type: Food event.)
632
+ property :FurnitureStore, :label => 'FurnitureStore', :comment =>
633
+ %(A furniture store.)
634
+ property :GardenStore, :label => 'GardenStore', :comment =>
635
+ %(A garden store.)
636
+ property :GasStation, :label => 'GasStation', :comment =>
637
+ %(A gas station.)
638
+ property :GatedResidenceCommunity, :label => 'GatedResidenceCommunity', :comment =>
639
+ %(Residence type: Gated community.)
640
+ property :GeneralContractor, :label => 'GeneralContractor', :comment =>
641
+ %(A general contractor.)
642
+ property :GeoCoordinates, :label => 'GeoCoordinates', :comment =>
643
+ %(The geographic coordinates of a place or event.)
644
+ property :GeoShape, :label => 'GeoShape', :comment =>
645
+ %(The geographic shape of a place.)
646
+ property :GiveAction, :label => 'GiveAction', :comment =>
647
+ %(The act of transferring ownership of an object to a
648
+ destination. Reciprocal of TakeAction.<p>Related
649
+ actions:</p><ul><li><a
650
+ href="http://schema.org/TakeAction">TakeAction</a>: Reciprocal
651
+ of GiveAction.</li><li><a
652
+ href="http://schema.org/SendAction">SendAction</a>: Unlike
653
+ SendAction, GiveAction implies that ownership is being
654
+ transferred \(e.g. I may send my laptop to you, but that
655
+ doesn't mean I'm giving it to you\).</li></ul>)
656
+ property :GolfCourse, :label => 'GolfCourse', :comment =>
657
+ %(A golf course.)
658
+ property :GovernmentBuilding, :label => 'GovernmentBuilding', :comment =>
659
+ %(A government building.)
660
+ property :GovernmentOffice, :label => 'GovernmentOffice', :comment =>
661
+ %(A government office&#x2014;for example, an IRS or DMV office.)
662
+ property :GovernmentOrganization, :label => 'GovernmentOrganization', :comment =>
663
+ %(A governmental organization or agency.)
664
+ property :GovernmentPermit, :label => 'GovernmentPermit', :comment =>
665
+ %(A permit issued by a government agency.)
666
+ property :GovernmentService, :label => 'GovernmentService', :comment =>
667
+ %(A service provided by a government organization, e.g. food
668
+ stamps, veterans benefits, etc.)
669
+ property :GroceryStore, :label => 'GroceryStore', :comment =>
670
+ %(A grocery store.)
671
+ property :HVACBusiness, :label => 'HVACBusiness', :comment =>
672
+ %(An HVAC service.)
673
+ property :HairSalon, :label => 'HairSalon', :comment =>
674
+ %(A hair salon.)
675
+ property :HardwareStore, :label => 'HardwareStore', :comment =>
676
+ %(A hardware store.)
677
+ property :HealthAndBeautyBusiness, :label => 'HealthAndBeautyBusiness', :comment =>
678
+ %(Health and beauty.)
679
+ property :HealthClub, :label => 'HealthClub', :comment =>
680
+ %(A health club.)
681
+ property :HighSchool, :label => 'HighSchool', :comment =>
682
+ %(A high school.)
683
+ property :HinduTemple, :label => 'HinduTemple', :comment =>
684
+ %(A Hindu temple.)
685
+ property :HobbyShop, :label => 'HobbyShop', :comment =>
686
+ %(A hobby store.)
687
+ property :HomeAndConstructionBusiness, :label => 'HomeAndConstructionBusiness', :comment =>
688
+ %(A construction business.)
689
+ property :HomeGoodsStore, :label => 'HomeGoodsStore', :comment =>
690
+ %(A home goods store.)
691
+ property :Hospital, :label => 'Hospital', :comment =>
692
+ %(A hospital.)
693
+ property :Hostel, :label => 'Hostel', :comment =>
694
+ %(A hostel.)
695
+ property :Hotel, :label => 'Hotel', :comment =>
696
+ %(A hotel.)
697
+ property :HousePainter, :label => 'HousePainter', :comment =>
698
+ %(A house painting service.)
699
+ property :IceCreamShop, :label => 'IceCreamShop', :comment =>
700
+ %(An ice cream shop)
701
+ property :IgnoreAction, :label => 'IgnoreAction', :comment =>
702
+ %(The act of intentionally disregarding the object. An agent
703
+ ignores an object.)
704
+ property :ImageGallery, :label => 'ImageGallery', :comment =>
705
+ %(Web page type: Image gallery page.)
706
+ property :ImageObject, :label => 'ImageObject', :comment =>
707
+ %(An image file.)
708
+ property :ImagingTest, :label => 'ImagingTest', :comment =>
709
+ %(Any medical imaging modality typically used for diagnostic
710
+ purposes.)
711
+ property :IndividualProduct, :label => 'IndividualProduct', :comment =>
712
+ %(A single, identifiable product instance \(e.g. a laptop with a
713
+ particular serial number\).)
714
+ property :InfectiousAgentClass, :label => 'InfectiousAgentClass', :comment =>
715
+ %(Classes of agents or pathogens that transmit infectious
716
+ diseases. Enumerated type.)
717
+ property :InfectiousDisease, :label => 'InfectiousDisease', :comment =>
718
+ %(An infectious disease is a clinically evident human disease
719
+ resulting from the presence of pathogenic microbial agents,
720
+ like pathogenic viruses, pathogenic bacteria, fungi, protozoa,
721
+ multicellular parasites, and prions. To be considered an
722
+ infectious disease, such pathogens are known to be able to
723
+ cause this disease.)
724
+ property :InformAction, :label => 'InformAction', :comment =>
725
+ %(The act of notifying someone of information pertinent to them,
726
+ with no expectation of a response.)
727
+ property :InsertAction, :label => 'InsertAction', :comment =>
728
+ %(The act of adding at a specific location in an ordered
729
+ collection.)
730
+ property :InstallAction, :label => 'InstallAction', :comment =>
731
+ %(The act of installing an application.)
732
+ property :InsuranceAgency, :label => 'InsuranceAgency', :comment =>
733
+ %(Insurance agency.)
734
+ property :Intangible, :label => 'Intangible', :comment =>
735
+ %(A utility class that serves as the umbrella for a number of
736
+ 'intangible' things such as quantities, structured values,
737
+ etc.)
738
+ property :Integer, :label => 'Integer', :comment =>
739
+ %(Data type: Integer.)
740
+ property :InteractAction, :label => 'InteractAction', :comment =>
741
+ %(The act of interacting with another person or organization.)
742
+ property :InternetCafe, :label => 'InternetCafe', :comment =>
743
+ %(An internet cafe.)
744
+ property :InviteAction, :label => 'InviteAction', :comment =>
745
+ %(The act of asking someone to attend an event. Reciprocal of
746
+ RsvpAction.)
747
+ property :ItemAvailability, :label => 'ItemAvailability', :comment =>
748
+ %(A list of possible product availablity options.)
749
+ property :ItemList, :label => 'ItemList', :comment =>
750
+ %(A list of items of any sort&#x2014;for example, Top 10 Movies
751
+ About Weathermen, or Top 100 Party Songs. Not to be confused
752
+ with HTML lists, which are often used only for formatting.)
753
+ property :ItemPage, :label => 'ItemPage', :comment =>
754
+ %(A page devoted to a single item, such as a particular product
755
+ or hotel.)
756
+ property :JewelryStore, :label => 'JewelryStore', :comment =>
757
+ %(A jewelry store.)
758
+ property :JobPosting, :label => 'JobPosting', :comment =>
759
+ %(A listing that describes a job opening in a certain
760
+ organization.)
761
+ property :JoinAction, :label => 'JoinAction', :comment =>
762
+ %(An agent joins an event/group with participants/friends at a
763
+ location.<p>Related actions:</p><ul><li><a
764
+ href="http://schema.org/RegisterAction">RegisterAction</a>:
765
+ Unlike RegisterAction, JoinAction refers to joining a
766
+ group/team of people.</li><li><a
767
+ href="http://schema.org/SubscribeAction">SubscribeAction</a>:
768
+ Unlike SubscribeAction, JoinAction does not imply that you'll
769
+ be receiving updates.</li><li><a
770
+ href="http://schema.org/FollowAction">FollowAction</a>: Unlike
771
+ FollowAction, JoinAction does not imply that you'll be polling
772
+ for updates.</li></ul>)
773
+ property :Joint, :label => 'Joint', :comment =>
774
+ %(The anatomical location at which two or more bones make
775
+ contact.)
776
+ property :LakeBodyOfWater, :label => 'LakeBodyOfWater', :comment =>
777
+ %(A lake \(for example, Lake Pontrachain\).)
778
+ property :Landform, :label => 'Landform', :comment =>
779
+ %(A landform or physical feature. Landform elements include
780
+ mountains, plains, lakes, rivers, seascape and oceanic
781
+ waterbody interface features such as bays, peninsulas, seas
782
+ and so forth, including sub-aqueous terrain features such as
783
+ submersed mountain ranges, volcanoes, and the great ocean
784
+ basins.)
785
+ property :LandmarksOrHistoricalBuildings, :label => 'LandmarksOrHistoricalBuildings', :comment =>
786
+ %(An historical landmark or building.)
787
+ property :Language, :label => 'Language', :comment =>
788
+ %(Natural languages such as Spanish, Tamil, Hindi, English, etc.
789
+ and programming languages such as Scheme and Lisp.)
790
+ property :LeaveAction, :label => 'LeaveAction', :comment =>
791
+ %(An agent leaves an event / group with participants/friends at
792
+ a location.<p>Related actions:</p><ul><li><a
793
+ href="http://schema.org/JoinAction">JoinAction</a>: The
794
+ antagonym of LeaveAction.</li><li><a
795
+ href="http://schema.org/UnRegisterAction">UnRegisterAction</a>:
796
+ Unlike UnRegisterAction, LeaveAction implies leaving a
797
+ group/team of people rather than a service.</li></ul>)
798
+ property :LegislativeBuilding, :label => 'LegislativeBuilding', :comment =>
799
+ %(A legislative building&#x2014;for example, the state capitol.)
800
+ property :LendAction, :label => 'LendAction', :comment =>
801
+ %(The act of providing an object under an agreement that it will
802
+ be returned at a later date. Reciprocal of
803
+ BorrowAction.<p>Related actions:</p><ul><li><a
804
+ href="http://schema.org/BorrowAction">BorrowAction</a>:
805
+ Reciprocal of LendAction.</li></ul>)
806
+ property :Library, :label => 'Library', :comment =>
807
+ %(A library.)
808
+ property :LifestyleModification, :label => 'LifestyleModification', :comment =>
809
+ %(A process of care involving exercise, changes to diet, fitness
810
+ routines, and other lifestyle changes aimed at improving a
811
+ health condition.)
812
+ property :Ligament, :label => 'Ligament', :comment =>
813
+ %(A short band of tough, flexible, fibrous connective tissue
814
+ that functions to connect multiple bones, cartilages, and
815
+ structurally support joints.)
816
+ property :LikeAction, :label => 'LikeAction', :comment =>
817
+ %(The act of expressing a positive sentiment about the object.
818
+ An agent likes an object \(a proposition, topic or theme\)
819
+ with participants.)
820
+ property :LiquorStore, :label => 'LiquorStore', :comment =>
821
+ %(A liquor store.)
822
+ property :ListenAction, :label => 'ListenAction', :comment =>
823
+ %(The act of consuming audio content.)
824
+ property :LiteraryEvent, :label => 'LiteraryEvent', :comment =>
825
+ %(Event type: Literary event.)
826
+ property :LocalBusiness, :label => 'LocalBusiness', :comment =>
827
+ %(A particular physical business or branch of an organization.
828
+ Examples of LocalBusiness include a restaurant, a particular
829
+ branch of a restaurant chain, a branch of a bank, a medical
830
+ practice, a club, a bowling alley, etc.)
831
+ property :LockerDelivery, :label => 'LockerDelivery', :comment =>
832
+ %(A DeliveryMethod in which an item is made available via
833
+ locker.)
834
+ property :Locksmith, :label => 'Locksmith', :comment =>
835
+ %(A locksmith.)
836
+ property :LodgingBusiness, :label => 'LodgingBusiness', :comment =>
837
+ %(A lodging business, such as a motel, hotel, or inn.)
838
+ property :LoseAction, :label => 'LoseAction', :comment =>
839
+ %(The act of being defeated in a competitive activity.)
840
+ property :LymphaticVessel, :label => 'LymphaticVessel', :comment =>
841
+ %(A type of blood vessel that specifically carries lymph fluid
842
+ unidirectionally toward the heart.)
843
+ property :Map, :label => 'Map', :comment =>
844
+ %(A map.)
845
+ property :MarryAction, :label => 'MarryAction', :comment =>
846
+ %(The act of marrying a person.)
847
+ property :Mass, :label => 'Mass', :comment =>
848
+ %(Properties that take Mass as values are of the form
849
+ '&lt;Number&gt; &lt;Mass unit of measure&gt;'. E.g., '7 kg')
850
+ property :MaximumDoseSchedule, :label => 'MaximumDoseSchedule', :comment =>
851
+ %(The maximum dosing schedule considered safe for a drug or
852
+ supplement as recommended by an authority or by the
853
+ drug/supplement's manufacturer. Capture the recommending
854
+ authority in the recognizingAuthority property of
855
+ MedicalEntity.)
856
+ property :MediaObject, :label => 'MediaObject', :comment =>
857
+ %(An image, video, or audio object embedded in a web page. Note
858
+ that a creative work may have many media objects associated
859
+ with it on the same web page. For example, a page about a
860
+ single song \(MusicRecording\) may have a music video
861
+ \(VideoObject\), and a high and low bandwidth audio stream \(2
862
+ AudioObject's\).)
863
+ property :MedicalAudience, :label => 'MedicalAudience', :comment =>
864
+ %(Target audiences for medical web pages. Enumerated type.)
865
+ property :MedicalCause, :label => 'MedicalCause', :comment =>
866
+ %(The causative agent\(s\) that are responsible for the
867
+ pathophysiologic process that eventually results in a medical
868
+ condition, symptom or sign. In this schema, unless otherwise
869
+ specified this is meant to be the proximate cause of the
870
+ medical condition, symptom or sign. The proximate cause is
871
+ defined as the causative agent that most directly results in
872
+ the medical condition, symptom or sign. For example, the HIV
873
+ virus could be considered a cause of AIDS. Or in a diagnostic
874
+ context, if a patient fell and sustained a hip fracture and
875
+ two days later sustained a pulmonary embolism which eventuated
876
+ in a cardiac arrest, the cause of the cardiac arrest \(the
877
+ proximate cause\) would be the pulmonary embolism and not the
878
+ fall. <p>Medical causes can include cardiovascular, chemical,
879
+ dermatologic, endocrine, environmental, gastroenterologic,
880
+ genetic, hematologic, gynecologic, iatrogenic, infectious,
881
+ musculoskeletal, neurologic, nutritional, obstetric,
882
+ oncologic, otolaryngologic, pharmacologic, psychiatric,
883
+ pulmonary, renal, rheumatologic, toxic, traumatic, or urologic
884
+ causes; medical conditions can be causes as well.)
885
+ property :MedicalClinic, :label => 'MedicalClinic', :comment =>
886
+ %(A medical clinic.)
887
+ property :MedicalCode, :label => 'MedicalCode', :comment =>
888
+ %(A code for a medical entity.)
889
+ property :MedicalCondition, :label => 'MedicalCondition', :comment =>
890
+ %(Any condition of the human body that affects the normal
891
+ functioning of a person, whether physically or mentally.
892
+ Includes diseases, injuries, disabilities, disorders,
893
+ syndromes, etc.)
894
+ property :MedicalConditionStage, :label => 'MedicalConditionStage', :comment =>
895
+ %(A stage of a medical condition, such as 'Stage IIIa'.)
896
+ property :MedicalContraindication, :label => 'MedicalContraindication', :comment =>
897
+ %(A condition or factor that serves as a reason to withhold a
898
+ certain medical therapy. Contraindications can be absolute
899
+ \(there are no reasonable circumstances for undertaking a
900
+ course of action\) or relative \(the patient is at higher risk
901
+ of complications, but that these risks may be outweighed by
902
+ other considerations or mitigated by other measures\).)
903
+ property :MedicalDevice, :label => 'MedicalDevice', :comment =>
904
+ %(Any object used in a medical capacity, such as to diagnose or
905
+ treat a patient.)
906
+ property :MedicalDevicePurpose, :label => 'MedicalDevicePurpose', :comment =>
907
+ %(Categories of medical devices, organized by the purpose or
908
+ intended use of the device.)
909
+ property :MedicalEntity, :label => 'MedicalEntity', :comment =>
910
+ %(The most generic type of entity related to health and the
911
+ practice of medicine.)
912
+ property :MedicalEnumeration, :label => 'MedicalEnumeration', :comment =>
913
+ %(Enumerations related to health and the practice of medicine.)
914
+ property :MedicalEvidenceLevel, :label => 'MedicalEvidenceLevel', :comment =>
915
+ %(Level of evidence for a medical guideline. Enumerated type.)
916
+ property :MedicalGuideline, :label => 'MedicalGuideline', :comment =>
917
+ %(Any recommendation made by a standard society \(e.g. ACC/AHA\)
918
+ or consensus statement that denotes how to diagnose and treat
919
+ a particular condition. Note: this type should be used to tag
920
+ the actual guideline recommendation; if the guideline
921
+ recommendation occurs in a larger scholarly article, use
922
+ MedicalScholarlyArticle to tag the overall article, not this
923
+ type. Note also: the organization making the recommendation
924
+ should be captured in the recognizingAuthority base property
925
+ of MedicalEntity.)
926
+ property :MedicalGuidelineContraindication, :label => 'MedicalGuidelineContraindication', :comment =>
927
+ %(A guideline contraindication that designates a process as
928
+ harmful and where quality of the data supporting the
929
+ contraindication is sound.)
930
+ property :MedicalGuidelineRecommendation, :label => 'MedicalGuidelineRecommendation', :comment =>
931
+ %(A guideline recommendation that is regarded as efficacious and
932
+ where quality of the data supporting the recommendation is
933
+ sound.)
934
+ property :MedicalImagingTechnique, :label => 'MedicalImagingTechnique', :comment =>
935
+ %(Any medical imaging modality typically used for diagnostic
936
+ purposes. Enumerated type.)
937
+ property :MedicalIndication, :label => 'MedicalIndication', :comment =>
938
+ %(A condition or factor that indicates use of a medical therapy,
939
+ including signs, symptoms, risk factors, anatomical states,
940
+ etc.)
941
+ property :MedicalIntangible, :label => 'MedicalIntangible', :comment =>
942
+ %(A utility class that serves as the umbrella for a number of
943
+ 'intangible' things in the medical space.)
944
+ property :MedicalObservationalStudy, :label => 'MedicalObservationalStudy', :comment =>
945
+ %(An observational study is a type of medical study that
946
+ attempts to infer the possible effect of a treatment through
947
+ observation of a cohort of subjects over a period of time. In
948
+ an observational study, the assignment of subjects into
949
+ treatment groups versus control groups is outside the control
950
+ of the investigator. This is in contrast with controlled
951
+ studies, such as the randomized controlled trials represented
952
+ by MedicalTrial, where each subject is randomly assigned to a
953
+ treatment group or a control group before the start of the
954
+ treatment.)
955
+ property :MedicalObservationalStudyDesign, :label => 'MedicalObservationalStudyDesign', :comment =>
956
+ %(Design models for observational medical studies. Enumerated
957
+ type.)
958
+ property :MedicalOrganization, :label => 'MedicalOrganization', :comment =>
959
+ %(A medical organization, such as a doctor's office or clinic.)
960
+ property :MedicalProcedure, :label => 'MedicalProcedure', :comment =>
961
+ %(A process of care used in either a diagnostic, therapeutic, or
962
+ palliative capacity that relies on invasive \(surgical\),
963
+ non-invasive, or percutaneous techniques.)
964
+ property :MedicalProcedureType, :label => 'MedicalProcedureType', :comment =>
965
+ %(An enumeration that describes different types of medical
966
+ procedures.)
967
+ property :MedicalRiskCalculator, :label => 'MedicalRiskCalculator', :comment =>
968
+ %(A complex mathematical calculation requiring an online
969
+ calculator, used to assess prognosis. Note: use the url
970
+ property of Thing to record any URLs for online calculators.)
971
+ property :MedicalRiskEstimator, :label => 'MedicalRiskEstimator', :comment =>
972
+ %(Any rule set or interactive tool for estimating the risk of
973
+ developing a complication or condition.)
974
+ property :MedicalRiskFactor, :label => 'MedicalRiskFactor', :comment =>
975
+ %(A risk factor is anything that increases a person's likelihood
976
+ of developing or contracting a disease, medical condition, or
977
+ complication.)
978
+ property :MedicalRiskScore, :label => 'MedicalRiskScore', :comment =>
979
+ %(A simple system that adds up the number of risk factors to
980
+ yield a score that is associated with prognosis, e.g. CHAD
981
+ score, TIMI risk score.)
982
+ property :MedicalScholarlyArticle, :label => 'MedicalScholarlyArticle', :comment =>
983
+ %(A scholarly article in the medical domain.)
984
+ property :MedicalSign, :label => 'MedicalSign', :comment =>
985
+ %(Any physical manifestation of a person's medical condition
986
+ discoverable by objective diagnostic tests or physical
987
+ examination.)
988
+ property :MedicalSignOrSymptom, :label => 'MedicalSignOrSymptom', :comment =>
989
+ %(Any indication of the existence of a medical condition or
990
+ disease.)
991
+ property :MedicalSpecialty, :label => 'MedicalSpecialty', :comment =>
992
+ %(Any specific branch of medical science or practice. Medical
993
+ specialities include clinical specialties that pertain to
994
+ particular organ systems and their respective disease states,
995
+ as well as allied health specialties. Enumerated type.)
996
+ property :MedicalStudy, :label => 'MedicalStudy', :comment =>
997
+ %(A medical study is an umbrella type covering all kinds of
998
+ research studies relating to human medicine or health,
999
+ including observational studies and interventional trials and
1000
+ registries, randomized, controlled or not. When the specific
1001
+ type of study is known, use one of the extensions of this
1002
+ type, such as MedicalTrial or MedicalObservationalStudy. Also,
1003
+ note that this type should be used to mark up data that
1004
+ describes the study itself; to tag an article that publishes
1005
+ the results of a study, use MedicalScholarlyArticle. Note: use
1006
+ the code property of MedicalEntity to store study IDs, e.g.
1007
+ clinicaltrials.gov ID.)
1008
+ property :MedicalStudyStatus, :label => 'MedicalStudyStatus', :comment =>
1009
+ %(The status of a medical study. Enumerated type.)
1010
+ property :MedicalSymptom, :label => 'MedicalSymptom', :comment =>
1011
+ %(Any indication of the existence of a medical condition or
1012
+ disease that is apparent to the patient.)
1013
+ property :MedicalTest, :label => 'MedicalTest', :comment =>
1014
+ %(Any medical test, typically performed for diagnostic purposes.)
1015
+ property :MedicalTestPanel, :label => 'MedicalTestPanel', :comment =>
1016
+ %(Any collection of tests commonly ordered together.)
1017
+ property :MedicalTherapy, :label => 'MedicalTherapy', :comment =>
1018
+ %(Any medical intervention designed to prevent, treat, and cure
1019
+ human diseases and medical conditions, including both curative
1020
+ and palliative therapies. Medical therapies are typically
1021
+ processes of care relying upon pharmacotherapy, behavioral
1022
+ therapy, supportive therapy \(with fluid or nutrition for
1023
+ example\), or detoxification \(e.g. hemodialysis\) aimed at
1024
+ improving or preventing a health condition.)
1025
+ property :MedicalTrial, :label => 'MedicalTrial', :comment =>
1026
+ %(A medical trial is a type of medical study that uses
1027
+ scientific process used to compare the safety and efficacy of
1028
+ medical therapies or medical procedures. In general, medical
1029
+ trials are controlled and subjects are allocated at random to
1030
+ the different treatment and/or control groups.)
1031
+ property :MedicalTrialDesign, :label => 'MedicalTrialDesign', :comment =>
1032
+ %(Design models for medical trials. Enumerated type.)
1033
+ property :MedicalWebPage, :label => 'MedicalWebPage', :comment =>
1034
+ %(A web page that provides medical information.)
1035
+ property :MedicineSystem, :label => 'MedicineSystem', :comment =>
1036
+ %(Systems of medical practice.)
1037
+ property :MensClothingStore, :label => 'MensClothingStore', :comment =>
1038
+ %(A men's clothing store.)
1039
+ property :MiddleSchool, :label => 'MiddleSchool', :comment =>
1040
+ %(A middle school.)
1041
+ property :MobileApplication, :label => 'MobileApplication', :comment =>
1042
+ %(A mobile software application.)
1043
+ property :MobilePhoneStore, :label => 'MobilePhoneStore', :comment =>
1044
+ %(A mobile-phone store.)
1045
+ property :Mosque, :label => 'Mosque', :comment =>
1046
+ %(A mosque.)
1047
+ property :Motel, :label => 'Motel', :comment =>
1048
+ %(A motel.)
1049
+ property :MotorcycleDealer, :label => 'MotorcycleDealer', :comment =>
1050
+ %(A motorcycle dealer.)
1051
+ property :MotorcycleRepair, :label => 'MotorcycleRepair', :comment =>
1052
+ %(A motorcycle repair shop.)
1053
+ property :Mountain, :label => 'Mountain', :comment =>
1054
+ %(A mountain, like Mount Whitney or Mount Everest)
1055
+ property :MoveAction, :label => 'MoveAction', :comment =>
1056
+ %(The act of an agent relocating to a place.<p>Related
1057
+ actions:</p><ul><li><a
1058
+ href="http://schema.org/TransferAction">TransferAction</a>:
1059
+ Unlike TransferAction, the subject of the move is a living
1060
+ Person or Organization rather than an inanimate
1061
+ object.</li></ul>)
1062
+ property :Movie, :label => 'Movie', :comment =>
1063
+ %(A movie.)
1064
+ property :MovieRentalStore, :label => 'MovieRentalStore', :comment =>
1065
+ %(A movie rental store.)
1066
+ property :MovieTheater, :label => 'MovieTheater', :comment =>
1067
+ %(A movie theater.)
1068
+ property :MovingCompany, :label => 'MovingCompany', :comment =>
1069
+ %(A moving company.)
1070
+ property :Muscle, :label => 'Muscle', :comment =>
1071
+ %(A muscle is an anatomical structure consisting of a
1072
+ contractile form of tissue that animals use to effect
1073
+ movement.)
1074
+ property :Museum, :label => 'Museum', :comment =>
1075
+ %(A museum.)
1076
+ property :MusicAlbum, :label => 'MusicAlbum', :comment =>
1077
+ %(A collection of music tracks.)
1078
+ property :MusicEvent, :label => 'MusicEvent', :comment =>
1079
+ %(Event type: Music event.)
1080
+ property :MusicGroup, :label => 'MusicGroup', :comment =>
1081
+ %(A musical group, such as a band, an orchestra, or a choir. Can
1082
+ also be a solo musician.)
1083
+ property :MusicPlaylist, :label => 'MusicPlaylist', :comment =>
1084
+ %(A collection of music tracks in playlist form.)
1085
+ property :MusicRecording, :label => 'MusicRecording', :comment =>
1086
+ %(A music recording \(track\), usually a single song.)
1087
+ property :MusicStore, :label => 'MusicStore', :comment =>
1088
+ %(A music store.)
1089
+ property :MusicVenue, :label => 'MusicVenue', :comment =>
1090
+ %(A music venue.)
1091
+ property :MusicVideoObject, :label => 'MusicVideoObject', :comment =>
1092
+ %(A music video file.)
1093
+ property :NGO, :label => 'NGO', :comment =>
1094
+ %(Organization: Non-governmental Organization.)
1095
+ property :NailSalon, :label => 'NailSalon', :comment =>
1096
+ %(A nail salon.)
1097
+ property :Nerve, :label => 'Nerve', :comment =>
1098
+ %(A common pathway for the electrochemical nerve impulses that
1099
+ are transmitted along each of the axons.)
1100
+ property :NewsArticle, :label => 'NewsArticle', :comment =>
1101
+ %(A news article)
1102
+ property :NightClub, :label => 'NightClub', :comment =>
1103
+ %(A nightclub or discotheque.)
1104
+ property :Notary, :label => 'Notary', :comment =>
1105
+ %(A notary.)
1106
+ property :Number, :label => 'Number', :comment =>
1107
+ %(Data type: Number.)
1108
+ property :NutritionInformation, :label => 'NutritionInformation', :comment =>
1109
+ %(Nutritional information about the recipe.)
1110
+ property :OceanBodyOfWater, :label => 'OceanBodyOfWater', :comment =>
1111
+ %(An ocean \(for example, the Pacific\).)
1112
+ property :Offer, :label => 'Offer', :comment =>
1113
+ %(An offer to sell an item&#x2014;for example, an offer to sell
1114
+ a product, the DVD of a movie, or tickets to an event.)
1115
+ property :OfferItemCondition, :label => 'OfferItemCondition', :comment =>
1116
+ %(A list of possible conditions for the item for sale.)
1117
+ property :OfficeEquipmentStore, :label => 'OfficeEquipmentStore', :comment =>
1118
+ %(An office equipment store.)
1119
+ property :OnDemandEvent, :label => 'OnDemandEvent', :comment =>
1120
+ %(A publication event e.g. catch-up TV or radio podcast, during
1121
+ which a program is available on-demand.)
1122
+ property :OnSitePickup, :label => 'OnSitePickup', :comment =>
1123
+ %(A DeliveryMethod in which an item is collected on site, e.g.
1124
+ in a store or at a box office.)
1125
+ property :OpeningHoursSpecification, :label => 'OpeningHoursSpecification', :comment =>
1126
+ %(A structured value providing information about the opening
1127
+ hours of a place or a certain service inside a place.)
1128
+ property :Optician, :label => 'Optician', :comment =>
1129
+ %(An optician's store.)
1130
+ property :Order, :label => 'Order', :comment =>
1131
+ %(An order is a confirmation of a transaction \(a receipt\),
1132
+ which can contain multiple line items, each represented by an
1133
+ Offer that has been accepted by the customer.)
1134
+ property :OrderAction, :label => 'OrderAction', :comment =>
1135
+ %(An agent orders an object/product/service to be
1136
+ delivered/sent.)
1137
+ property :OrderStatus, :label => 'OrderStatus', :comment =>
1138
+ %(Enumerated status values for Order.)
1139
+ property :Organization, :label => 'Organization', :comment =>
1140
+ %(An organization such as a school, NGO, corporation, club, etc.)
1141
+ property :OrganizeAction, :label => 'OrganizeAction', :comment =>
1142
+ %(The act of manipulating/administering/supervising/controlling
1143
+ one or more objects.)
1144
+ property :OutletStore, :label => 'OutletStore', :comment =>
1145
+ %(An outlet store.)
1146
+ property :OwnershipInfo, :label => 'OwnershipInfo', :comment =>
1147
+ %(A structured value providing information about when a certain
1148
+ organization or person owned a certain product.)
1149
+ property :PaintAction, :label => 'PaintAction', :comment =>
1150
+ %(The act of producing a painting, typically with paint and
1151
+ canvas as instruments.)
1152
+ property :Painting, :label => 'Painting', :comment =>
1153
+ %(A painting.)
1154
+ property :PalliativeProcedure, :label => 'PalliativeProcedure', :comment =>
1155
+ %(A medical procedure intended primarly for palliative purposes,
1156
+ aimed at relieving the symptoms of an underlying health
1157
+ condition.)
1158
+ property :ParcelDelivery, :label => 'ParcelDelivery', :comment =>
1159
+ %(The delivery of a parcel either via the postal service or a
1160
+ commercial service.)
1161
+ property :ParcelService, :label => 'ParcelService', :comment =>
1162
+ %(A private parcel service as the delivery mode available for a
1163
+ certain offer. Commonly used values:
1164
+ http://purl.org/goodrelations/v1#DHL
1165
+ http://purl.org/goodrelations/v1#FederalExpress
1166
+ http://purl.org/goodrelations/v1#UPS)
1167
+ property :ParentAudience, :label => 'ParentAudience', :comment =>
1168
+ %(A set of characteristics describing parents, who can be
1169
+ interested in viewing some content)
1170
+ property :Park, :label => 'Park', :comment =>
1171
+ %(A park.)
1172
+ property :ParkingFacility, :label => 'ParkingFacility', :comment =>
1173
+ %(A parking lot or other parking facility.)
1174
+ property :PathologyTest, :label => 'PathologyTest', :comment =>
1175
+ %(A medical test performed by a laboratory that typically
1176
+ involves examination of a tissue sample by a pathologist.)
1177
+ property :PawnShop, :label => 'PawnShop', :comment =>
1178
+ %(A pawnstore.)
1179
+ property :PayAction, :label => 'PayAction', :comment =>
1180
+ %(An agent pays a price to a participant.)
1181
+ property :PaymentChargeSpecification, :label => 'PaymentChargeSpecification', :comment =>
1182
+ %(The costs of settling the payment using a particular payment
1183
+ method.)
1184
+ property :PaymentMethod, :label => 'PaymentMethod', :comment =>
1185
+ %(A payment method is a standardized procedure for transferring
1186
+ the monetary amount for a purchase. Payment methods are
1187
+ characterized by the legal and technical structures used, and
1188
+ by the organization or group carrying out the transaction.
1189
+ Commonly used values:
1190
+ http://purl.org/goodrelations/v1#ByBankTransferInAdvance
1191
+ http://purl.org/goodrelations/v1#ByInvoice
1192
+ http://purl.org/goodrelations/v1#Cash
1193
+ http://purl.org/goodrelations/v1#CheckInAdvance
1194
+ http://purl.org/goodrelations/v1#COD
1195
+ http://purl.org/goodrelations/v1#DirectDebit
1196
+ http://purl.org/goodrelations/v1#GoogleCheckout
1197
+ http://purl.org/goodrelations/v1#PayPal
1198
+ http://purl.org/goodrelations/v1#PaySwarm)
1199
+ property :PeopleAudience, :label => 'PeopleAudience', :comment =>
1200
+ %(A set of characteristics belonging to people, e.g. who compose
1201
+ an item's target audience.)
1202
+ property :PerformAction, :label => 'PerformAction', :comment =>
1203
+ %(The act of participating in performance arts.)
1204
+ property :PerformingArtsTheater, :label => 'PerformingArtsTheater', :comment =>
1205
+ %(A theatre or other performing art center.)
1206
+ property :PerformingGroup, :label => 'PerformingGroup', :comment =>
1207
+ %(A performance group, such as a band, an orchestra, or a
1208
+ circus.)
1209
+ property :Permit, :label => 'Permit', :comment =>
1210
+ %(A permit issued by an organization, e.g. a parking pass.)
1211
+ property :Person, :label => 'Person', :comment =>
1212
+ %(A person \(alive, dead, undead, or fictional\).)
1213
+ property :PetStore, :label => 'PetStore', :comment =>
1214
+ %(A pet store.)
1215
+ property :Pharmacy, :label => 'Pharmacy', :comment =>
1216
+ %(A pharmacy or drugstore.)
1217
+ property :Photograph, :label => 'Photograph', :comment =>
1218
+ %(A photograph.)
1219
+ property :PhotographAction, :label => 'PhotographAction', :comment =>
1220
+ %(The act of capturing still images of objects using a camera.)
1221
+ property :PhysicalActivity, :label => 'PhysicalActivity', :comment =>
1222
+ %(Any bodily activity that enhances or maintains physical
1223
+ fitness and overall health and wellness. Includes activity
1224
+ that is part of daily living and routine, structured exercise,
1225
+ and exercise prescribed as part of a medical treatment or
1226
+ recovery plan.)
1227
+ property :PhysicalActivityCategory, :label => 'PhysicalActivityCategory', :comment =>
1228
+ %(Categories of physical activity, organized by physiologic
1229
+ classification.)
1230
+ property :PhysicalExam, :label => 'PhysicalExam', :comment =>
1231
+ %(A type of physical examination of a patient performed by a
1232
+ physician. Enumerated type.)
1233
+ property :PhysicalTherapy, :label => 'PhysicalTherapy', :comment =>
1234
+ %(A process of progressive physical care and rehabilitation
1235
+ aimed at improving a health condition.)
1236
+ property :Physician, :label => 'Physician', :comment =>
1237
+ %(A doctor's office.)
1238
+ property :Place, :label => 'Place', :comment =>
1239
+ %(Entities that have a somewhat fixed, physical extension.)
1240
+ property :PlaceOfWorship, :label => 'PlaceOfWorship', :comment =>
1241
+ %(Place of worship, such as a church, synagogue, or mosque.)
1242
+ property :PlanAction, :label => 'PlanAction', :comment =>
1243
+ %(The act of planning the execution of an
1244
+ event/task/action/reservation/plan to a future date.)
1245
+ property :PlayAction, :label => 'PlayAction', :comment =>
1246
+ %(The act of playing/exercising/training/performing for
1247
+ enjoyment, leisure, recreation, competion or
1248
+ exercise.<p>Related actions:</p><ul><li><a
1249
+ href="http://schema.org/ListenAction">ListenAction</a>: Unlike
1250
+ ListenAction \(which is under ConsumeAction\), PlayAction
1251
+ refers to performing for an audience or at an event, rather
1252
+ than consuming music.</li><li><a
1253
+ href="http://schema.org/WatchAction">WatchAction</a>: Unlike
1254
+ WatchAction \(which is under ConsumeAction\), PlayAction
1255
+ refers to showing/displaying for an audience or at an event,
1256
+ rather than consuming visual content.</li></ul>)
1257
+ property :Playground, :label => 'Playground', :comment =>
1258
+ %(A playground.)
1259
+ property :Plumber, :label => 'Plumber', :comment =>
1260
+ %(A plumbing service.)
1261
+ property :PoliceStation, :label => 'PoliceStation', :comment =>
1262
+ %(A police station.)
1263
+ property :Pond, :label => 'Pond', :comment =>
1264
+ %(A pond)
1265
+ property :PostOffice, :label => 'PostOffice', :comment =>
1266
+ %(A post office.)
1267
+ property :PostalAddress, :label => 'PostalAddress', :comment =>
1268
+ %(The mailing address.)
1269
+ property :PrependAction, :label => 'PrependAction', :comment =>
1270
+ %(The act of inserting at the beginning if an ordered
1271
+ collection.)
1272
+ property :Preschool, :label => 'Preschool', :comment =>
1273
+ %(A preschool.)
1274
+ property :PreventionIndication, :label => 'PreventionIndication', :comment =>
1275
+ %(An indication for preventing an underlying condition, symptom,
1276
+ etc.)
1277
+ property :PriceSpecification, :label => 'PriceSpecification', :comment =>
1278
+ %(A structured value representing a monetary amount. Typically,
1279
+ only the subclasses of this type are used for markup.)
1280
+ property :ProductModel, :label => 'ProductModel', :comment =>
1281
+ %(A datasheet or vendor specification of a product \(in the
1282
+ sense of a prototypical description\).)
1283
+ property :ProfessionalService, :label => 'ProfessionalService', :comment =>
1284
+ %(Provider of professional services.)
1285
+ property :ProfilePage, :label => 'ProfilePage', :comment =>
1286
+ %(Web page type: Profile page.)
1287
+ property :Property, :label => 'Property', :comment =>
1288
+ %(A property, used to indicate attributes and relationships of
1289
+ some Thing; equivalent to rdf:Property.)
1290
+ property :PsychologicalTreatment, :label => 'PsychologicalTreatment', :comment =>
1291
+ %(A process of care relying upon counseling, dialogue,
1292
+ communication, verbalization aimed at improving a mental
1293
+ health condition.)
1294
+ property :PublicSwimmingPool, :label => 'PublicSwimmingPool', :comment =>
1295
+ %(A public swimming pool.)
1296
+ property :PublicationEvent, :label => 'PublicationEvent', :comment =>
1297
+ %(A PublicationEvent corresponds indifferently to the event of
1298
+ publication for a CreativeWork of any type e.g. a broadcast
1299
+ event, an on-demand event, a book/journal publication via a
1300
+ variety of delivery media.)
1301
+ property :QualitativeValue, :label => 'QualitativeValue', :comment =>
1302
+ %(A predefined value for a product characteristic, e.g. the the
1303
+ power cord plug type "US" or the garment sizes "S", "M", "L",
1304
+ and "XL")
1305
+ property :QuantitativeValue, :label => 'QuantitativeValue', :comment =>
1306
+ %(A point value or interval for product characteristics and
1307
+ other purposes.)
1308
+ property :Quantity, :label => 'Quantity', :comment =>
1309
+ %(Quantities such as distance, time, mass, weight, etc.
1310
+ Particular instances of say Mass are entities like '3 Kg' or
1311
+ '4 milligrams'.)
1312
+ property :QuoteAction, :label => 'QuoteAction', :comment =>
1313
+ %(An agent quotes/estimates/appraises an object/product/service
1314
+ with a price at a location/store.)
1315
+ property :RVPark, :label => 'RVPark', :comment =>
1316
+ %(An RV park.)
1317
+ property :RadiationTherapy, :label => 'RadiationTherapy', :comment =>
1318
+ %(A process of care using radiation aimed at improving a health
1319
+ condition.)
1320
+ property :RadioClip, :label => 'RadioClip', :comment =>
1321
+ %(A short radio progam or a segment/part of a radio program.)
1322
+ property :RadioEpisode, :label => 'RadioEpisode', :comment =>
1323
+ %(A radio episode which can be part of a series or season.)
1324
+ property :RadioSeason, :label => 'RadioSeason', :comment =>
1325
+ %(Season dedicated to radio broadcast and associated online
1326
+ delivery.)
1327
+ property :RadioSeries, :label => 'RadioSeries', :comment =>
1328
+ %(Series dedicated to radio broadcast and associated online
1329
+ delivery.)
1330
+ property :RadioStation, :label => 'RadioStation', :comment =>
1331
+ %(A radio station.)
1332
+ property :Rating, :label => 'Rating', :comment =>
1333
+ %(The rating of the video.)
1334
+ property :ReactAction, :label => 'ReactAction', :comment =>
1335
+ %(The act of responding instinctively and emotionally to an
1336
+ object, expressing a sentiment.)
1337
+ property :ReadAction, :label => 'ReadAction', :comment =>
1338
+ %(The act of consuming written content.)
1339
+ property :RealEstateAgent, :label => 'RealEstateAgent', :comment =>
1340
+ %(A real-estate agent.)
1341
+ property :ReceiveAction, :label => 'ReceiveAction', :comment =>
1342
+ %(The act of physically/electronically taking delivery of an
1343
+ object thathas been transferred from an origin to a
1344
+ destination. Reciprocal of SendAction.<p>Related
1345
+ actions:</p><ul><li><a
1346
+ href="http://schema.org/SendAction">SendAction</a>: The
1347
+ reciprocal of ReceiveAction.</li><li><a
1348
+ href="http://schema.org/TakeAction">TakeAction</a>: Unlike
1349
+ TakeAction, ReceiveAction does not imply that the ownership
1350
+ has been transfered \(e.g. I can receive a package, but it
1351
+ does not mean the package is now mine\).</li></ul>)
1352
+ property :Recipe, :label => 'Recipe', :comment =>
1353
+ %(A recipe.)
1354
+ property :RecommendedDoseSchedule, :label => 'RecommendedDoseSchedule', :comment =>
1355
+ %(A recommended dosing schedule for a drug or supplement as
1356
+ prescribed or recommended by an authority or by the
1357
+ drug/supplement's manufacturer. Capture the recommending
1358
+ authority in the recognizingAuthority property of
1359
+ MedicalEntity.)
1360
+ property :RecyclingCenter, :label => 'RecyclingCenter', :comment =>
1361
+ %(A recycling center.)
1362
+ property :RegisterAction, :label => 'RegisterAction', :comment =>
1363
+ %(The act of registering to be a user of a service, product or
1364
+ web page.<p>Related actions:</p><ul><li><a
1365
+ href="http://schema.org/JoinAction">JoinAction</a>: Unlike
1366
+ JoinAction, RegisterAction implies you are registering to be a
1367
+ user of a service, *not* a group/team of people.</li><li><a
1368
+ href="http://schema.org/FollowAction">FollowAction</a>: Unlike
1369
+ FollowAction, RegisterAction doesn't imply that the agent is
1370
+ expecting to poll for updates from the object.</li><li><a
1371
+ href="http://schema.org/SubscribeAction">SubscribeAction</a>:
1372
+ Unlike SubscribeAction, RegisterAction doesn't imply that the
1373
+ agent is expecting updates from the object.</li></ul>)
1374
+ property :RejectAction, :label => 'RejectAction', :comment =>
1375
+ %(The act of rejecting to/adopting an object.<p>Related
1376
+ actions:</p><ul><li><a
1377
+ href="http://schema.org/AcceptAction">AcceptAction</a>: The
1378
+ antagonym of RejectAction.</li></ul>)
1379
+ property :RentAction, :label => 'RentAction', :comment =>
1380
+ %(The act of giving money in return for temporary use, but not
1381
+ ownership, of an object such as a vehicle or property. For
1382
+ example, an agent rents a property from a landlord in exchange
1383
+ for a periodic payment.)
1384
+ property :ReplaceAction, :label => 'ReplaceAction', :comment =>
1385
+ %(The act of editing a recipient by replacing an old object with
1386
+ a new object.)
1387
+ property :ReplyAction, :label => 'ReplyAction', :comment =>
1388
+ %(The act of responding to a question/message asked/sent by the
1389
+ object. Related to <a
1390
+ href="AskAction">AskAction</a>.<p>Related
1391
+ actions:</p><ul><li><a
1392
+ href="http://schema.org/AskAction">AskAction</a>: Appears
1393
+ generally as an origin of a ReplyAction.</li></ul>)
1394
+ property :ReportedDoseSchedule, :label => 'ReportedDoseSchedule', :comment =>
1395
+ %(A patient-reported or observed dosing schedule for a drug or
1396
+ supplement.)
1397
+ property :ReserveAction, :label => 'ReserveAction', :comment =>
1398
+ %(Reserving a concrete object.<p>Related actions:</p><ul><li><a
1399
+ href="http://schema.org/ScheduleAction">ScheduleAction</a>:
1400
+ Unlike ScheduleAction, ReserveAction reserves concrete objects
1401
+ \(e.g. a table, a hotel\) towards a time slot / spatial
1402
+ allocation.</li></ul>)
1403
+ property :Reservoir, :label => 'Reservoir', :comment =>
1404
+ %(A reservoir, like the Lake Kariba reservoir.)
1405
+ property :Residence, :label => 'Residence', :comment =>
1406
+ %(The place where a person lives.)
1407
+ property :Restaurant, :label => 'Restaurant', :comment =>
1408
+ %(A restaurant.)
1409
+ property :ReturnAction, :label => 'ReturnAction', :comment =>
1410
+ %(The act of returning to the origin that which was previously
1411
+ received \(concrete objects\) or taken \(ownership\).)
1412
+ property :Review, :label => 'Review', :comment =>
1413
+ %(A review of an item - for example, a restaurant, movie, or
1414
+ store.)
1415
+ property :ReviewAction, :label => 'ReviewAction', :comment =>
1416
+ %(The act of producing a balanced opinion about the object for
1417
+ an audience. An agent reviews an object with participants
1418
+ resulting in a review.)
1419
+ property :RiverBodyOfWater, :label => 'RiverBodyOfWater', :comment =>
1420
+ %(A river \(for example, the broad majestic Shannon\).)
1421
+ property :RoofingContractor, :label => 'RoofingContractor', :comment =>
1422
+ %(A roofing contractor.)
1423
+ property :RsvpAction, :label => 'RsvpAction', :comment =>
1424
+ %(The act of notifying an event organiser as to whether you
1425
+ expect to attend the event.)
1426
+ property :SaleEvent, :label => 'SaleEvent', :comment =>
1427
+ %(Event type: Sales event.)
1428
+ property :ScheduleAction, :label => 'ScheduleAction', :comment =>
1429
+ %(Scheduling future actions, events, or tasks.<p>Related
1430
+ actions:</p><ul><li><a
1431
+ href="http://schema.org/ReserveAction">ReserveAction</a>:
1432
+ Unlike ReserveAction, ScheduleAction allocates future actions
1433
+ \(e.g. an event, a task, etc\) towards a time slot / spatial
1434
+ allocation.</li></ul>)
1435
+ property :ScholarlyArticle, :label => 'ScholarlyArticle', :comment =>
1436
+ %(A scholarly article.)
1437
+ property :School, :label => 'School', :comment =>
1438
+ %(A school.)
1439
+ property :Sculpture, :label => 'Sculpture', :comment =>
1440
+ %(A piece of sculpture.)
1441
+ property :SeaBodyOfWater, :label => 'SeaBodyOfWater', :comment =>
1442
+ %(A sea \(for example, the Caspian sea\).)
1443
+ property :SearchAction, :label => 'SearchAction', :comment =>
1444
+ %(The act of searching for an object.<p>Related
1445
+ actions:</p><ul><li><a
1446
+ href="http://schema.org/FindAction">FindAction</a>:
1447
+ SearchAction generally leads to a FindAction, but not
1448
+ necessarily.</li></ul>)
1449
+ property :SearchResultsPage, :label => 'SearchResultsPage', :comment =>
1450
+ %(Web page type: Search results page.)
1451
+ property :Season, :label => 'Season', :comment =>
1452
+ %(A TV or radio season.)
1453
+ property :SelfStorage, :label => 'SelfStorage', :comment =>
1454
+ %(Self-storage facility.)
1455
+ property :SellAction, :label => 'SellAction', :comment =>
1456
+ %(The act of taking money from a buyer in exchange for goods or
1457
+ services rendered. An agent sells an object, product, or
1458
+ service to a buyer for a price. Reciprocal of BuyAction.)
1459
+ property :SendAction, :label => 'SendAction', :comment =>
1460
+ %(The act of physically/electronically dispatching an object for
1461
+ transfer from an origin to a destination.<p>Related
1462
+ actions:</p><ul><li><a
1463
+ href="http://schema.org/ReceiveAction">ReceiveAction</a>: The
1464
+ reciprocal of SendAction.</li><li><a
1465
+ href="http://schema.org/GiveAction">GiveAction</a>: Unlike
1466
+ GiveAction, SendAction does not imply the transfer of
1467
+ ownership \(e.g. I can send you my laptop, but I'm not
1468
+ necessarily giving it to you\).</li></ul>)
1469
+ property :Series, :label => 'Series', :comment =>
1470
+ %(A TV or radio series.)
1471
+ property :Service, :label => 'Service', :comment =>
1472
+ %(A service provided by an organization, e.g. delivery service,
1473
+ print services, etc.)
1474
+ property :ServiceChannel, :label => 'ServiceChannel', :comment =>
1475
+ %(A means for accessing a service, e.g. a government office
1476
+ location, web site, or phone number.)
1477
+ property :ShareAction, :label => 'ShareAction', :comment =>
1478
+ %(The act of distributing content to people for their amusement
1479
+ or edification.)
1480
+ property :ShoeStore, :label => 'ShoeStore', :comment =>
1481
+ %(A shoe store.)
1482
+ property :ShoppingCenter, :label => 'ShoppingCenter', :comment =>
1483
+ %(A shopping center or mall.)
1484
+ property :SingleFamilyResidence, :label => 'SingleFamilyResidence', :comment =>
1485
+ %(Residence type: Single-family home.)
1486
+ property :SiteNavigationElement, :label => 'SiteNavigationElement', :comment =>
1487
+ %(A navigation element of the page.)
1488
+ property :SkiResort, :label => 'SkiResort', :comment =>
1489
+ %(A ski resort.)
1490
+ property :SocialEvent, :label => 'SocialEvent', :comment =>
1491
+ %(Event type: Social event.)
1492
+ property :SoftwareApplication, :label => 'SoftwareApplication', :comment =>
1493
+ %(A software application.)
1494
+ property :SomeProducts, :label => 'SomeProducts', :comment =>
1495
+ %(A placeholder for multiple similar products of the same kind.)
1496
+ property :Specialty, :label => 'Specialty', :comment =>
1497
+ %(Any branch of a field in which people typically develop
1498
+ specific expertise, usually after significant study, time, and
1499
+ effort.)
1500
+ property :SportingGoodsStore, :label => 'SportingGoodsStore', :comment =>
1501
+ %(A sporting goods store.)
1502
+ property :SportsActivityLocation, :label => 'SportsActivityLocation', :comment =>
1503
+ %(A sports location, such as a playing field.)
1504
+ property :SportsClub, :label => 'SportsClub', :comment =>
1505
+ %(A sports club.)
1506
+ property :SportsEvent, :label => 'SportsEvent', :comment =>
1507
+ %(Event type: Sports event.)
1508
+ property :SportsTeam, :label => 'SportsTeam', :comment =>
1509
+ %(Organization: Sports team.)
1510
+ property :StadiumOrArena, :label => 'StadiumOrArena', :comment =>
1511
+ %(A stadium.)
1512
+ property :State, :label => 'State', :comment =>
1513
+ %(A state or province.)
1514
+ property :Store, :label => 'Store', :comment =>
1515
+ %(A retail good store.)
1516
+ property :StructuredValue, :label => 'StructuredValue', :comment =>
1517
+ %(Structured values are strings&#x2014;for example,
1518
+ addresses&#x2014;that have certain constraints on their
1519
+ structure.)
1520
+ property :SubscribeAction, :label => 'SubscribeAction', :comment =>
1521
+ %(The act of forming a personal connection with
1522
+ someone/something \(object\) unidirectionally/asymmetrically
1523
+ to get updates pushed to.<p>Related actions:</p><ul><li><a
1524
+ href="http://schema.org/FollowAction">FollowAction</a>: Unlike
1525
+ FollowAction, SubscribeAction implies that the subscriber acts
1526
+ as a passive agent being constantly/actively pushed for
1527
+ updates.</li><li><a
1528
+ href="http://schema.org/RegisterAction">RegisterAction</a>:
1529
+ Unlike RegisterAction, SubscribeAction implies that the agent
1530
+ is interested in continuing receiving updates from the
1531
+ object.</li><li><a
1532
+ href="http://schema.org/JoinAction">JoinAction</a>: Unlike
1533
+ JoinAction, SubscribeAction implies that the agent is
1534
+ interested in continuing receiving updates from the
1535
+ object.</li></ul>)
1536
+ property :SubwayStation, :label => 'SubwayStation', :comment =>
1537
+ %(A subway station.)
1538
+ property :SuperficialAnatomy, :label => 'SuperficialAnatomy', :comment =>
1539
+ %(Anatomical features that can be observed by sight \(without
1540
+ dissection\), including the form and proportions of the human
1541
+ body as well as surface landmarks that correspond to deeper
1542
+ subcutaneous structures. Superficial anatomy plays an
1543
+ important role in sports medicine, phlebotomy, and other
1544
+ medical specialties as underlying anatomical structures can be
1545
+ identified through surface palpation. For example, during back
1546
+ surgery, superficial anatomy can be used to palpate and count
1547
+ vertebrae to find the site of incision. Or in phlebotomy,
1548
+ superficial anatomy can be used to locate an underlying vein;
1549
+ for example, the median cubital vein can be located by
1550
+ palpating the borders of the cubital fossa \(such as the
1551
+ epicondyles of the humerus\) and then looking for the
1552
+ superficial signs of the vein, such as size, prominence,
1553
+ ability to refill after depression, and feel of surrounding
1554
+ tissue support. As another example, in a subluxation
1555
+ \(dislocation\) of the glenohumeral joint, the bony structure
1556
+ becomes pronounced with the deltoid muscle failing to cover
1557
+ the glenohumeral joint allowing the edges of the scapula to be
1558
+ superficially visible. Here, the superficial anatomy is the
1559
+ visible edges of the scapula, implying the underlying
1560
+ dislocation of the joint \(the related anatomical structure\).)
1561
+ property :Synagogue, :label => 'Synagogue', :comment =>
1562
+ %(A synagogue.)
1563
+ property :TVClip, :label => 'TVClip', :comment =>
1564
+ %(A short TV progam or a segment/part of a TV program.)
1565
+ property :TVEpisode, :label => 'TVEpisode', :comment =>
1566
+ %(A TV episode which can be part of a series or season.)
1567
+ property :TVSeason, :label => 'TVSeason', :comment =>
1568
+ %(Season dedicated to TV broadcast and associated online
1569
+ delivery.)
1570
+ property :TVSeries, :label => 'TVSeries', :comment =>
1571
+ %(Series dedicated to TV broadcast and associated online
1572
+ delivery.)
1573
+ property :Table, :label => 'Table', :comment =>
1574
+ %(A table on the page.)
1575
+ property :TakeAction, :label => 'TakeAction', :comment =>
1576
+ %(The act of gaining ownership of an object from an origin.
1577
+ Reciprocal of GiveAction.<p>Related actions:</p><ul><li><a
1578
+ href="http://schema.org/GiveAction">GiveAction</a>: The
1579
+ reciprocal of TakeAction.</li><li><a
1580
+ href="http://schema.org/ReceiveAction">ReceiveAction</a>:
1581
+ Unlike ReceiveAction, TakeAction implies that ownership has
1582
+ been transfered.</li></ul>)
1583
+ property :TattooParlor, :label => 'TattooParlor', :comment =>
1584
+ %(A tattoo parlor.)
1585
+ property :TaxiStand, :label => 'TaxiStand', :comment =>
1586
+ %(A taxi stand.)
1587
+ property :TechArticle, :label => 'TechArticle', :comment =>
1588
+ %(A technical article - Example: How-to \(task\) topics,
1589
+ step-by-step, procedural troubleshooting, specifications, etc.)
1590
+ property :TelevisionStation, :label => 'TelevisionStation', :comment =>
1591
+ %(A television station.)
1592
+ property :TennisComplex, :label => 'TennisComplex', :comment =>
1593
+ %(A tennis complex.)
1594
+ property :Text, :label => 'Text', :comment =>
1595
+ %(Data type: Text.)
1596
+ property :TheaterEvent, :label => 'TheaterEvent', :comment =>
1597
+ %(Event type: Theater performance.)
1598
+ property :TheaterGroup, :label => 'TheaterGroup', :comment =>
1599
+ %(A theater group or company&#x2014;for example, the Royal
1600
+ Shakespeare Company or Druid Theatre.)
1601
+ property :TherapeuticProcedure, :label => 'TherapeuticProcedure', :comment =>
1602
+ %(A medical procedure intended primarly for therapeutic
1603
+ purposes, aimed at improving a health condition.)
1604
+ property :Thing, :label => 'Thing', :comment =>
1605
+ %(The most generic type of item.)
1606
+ property :TieAction, :label => 'TieAction', :comment =>
1607
+ %(The act of reaching a draw in a competitive activity.)
1608
+ property :Time, :label => 'Time', :comment =>
1609
+ %(A point in time recurring on multiple days in the form
1610
+ hh:mm:ss[Z|\(+|-\)hh:mm] \(see <a
1611
+ href="http://www.w3.org/TR/xmlschema-2/#time">XML schema for
1612
+ details</a>\).)
1613
+ property :TipAction, :label => 'TipAction', :comment =>
1614
+ %(The act of giving money voluntarily to a beneficiary in
1615
+ recognition of services rendered.)
1616
+ property :TireShop, :label => 'TireShop', :comment =>
1617
+ %(A tire shop.)
1618
+ property :TouristAttraction, :label => 'TouristAttraction', :comment =>
1619
+ %(A tourist attraction.)
1620
+ property :TouristInformationCenter, :label => 'TouristInformationCenter', :comment =>
1621
+ %(A tourist information center.)
1622
+ property :ToyStore, :label => 'ToyStore', :comment =>
1623
+ %(A toystore.)
1624
+ property :TrackAction, :label => 'TrackAction', :comment =>
1625
+ %(An agent tracks an object for updates.<p>Related
1626
+ actions:</p><ul><li><a
1627
+ href="http://schema.org/FollowAction">FollowAction</a>: Unlike
1628
+ FollowAction, TrackAction refers to the interest on the
1629
+ location of innanimates objects.</li><li><a
1630
+ href="http://schema.org/SubscribeAction">SubscribeAction</a>:
1631
+ Unlike SubscribeAction, TrackAction refers to the interest on
1632
+ the location of innanimate objects.</li></ul>)
1633
+ property :TradeAction, :label => 'TradeAction', :comment =>
1634
+ %(The act of participating in an exchange of goods and services
1635
+ for monetary compensation. An agent trades an object, product
1636
+ or service with a participant in exchange for a one time or
1637
+ periodic payment.)
1638
+ property :TrainStation, :label => 'TrainStation', :comment =>
1639
+ %(A train station.)
1640
+ property :TransferAction, :label => 'TransferAction', :comment =>
1641
+ %(The act of transferring/moving \(abstract or concrete\)
1642
+ animate or inanimate objects from one place to another.)
1643
+ property :TravelAction, :label => 'TravelAction', :comment =>
1644
+ %(The act of traveling from an fromLocation to a destination by
1645
+ a specified mode of transport, optionally with participants.)
1646
+ property :TravelAgency, :label => 'TravelAgency', :comment =>
1647
+ %(A travel agency.)
1648
+ property :TreatmentIndication, :label => 'TreatmentIndication', :comment =>
1649
+ %(An indication for treating an underlying condition, symptom,
1650
+ etc.)
1651
+ property :TypeAndQuantityNode, :label => 'TypeAndQuantityNode', :comment =>
1652
+ %(A structured value indicating the quantity, unit of
1653
+ measurement, and business function of goods included in a
1654
+ bundle offer.)
1655
+ property :URL, :label => 'URL', :comment =>
1656
+ %(Data type: URL.)
1657
+ property :UnRegisterAction, :label => 'UnRegisterAction', :comment =>
1658
+ %(The act of un-registering from a service.<p>Related
1659
+ actions:</p><ul><li><a
1660
+ href="http://schema.org/RegisterAction">RegisterAction</a>:
1661
+ Antagonym of UnRegisterAction.</li><li><a
1662
+ href="http://schema.org/Leave">Leave</a>: Unlike LeaveAction,
1663
+ UnRegisterAction implies that you are unregistering from a
1664
+ service you werer previously registered, rather than leaving a
1665
+ team/group of people.</li></ul>)
1666
+ property :UnitPriceSpecification, :label => 'UnitPriceSpecification', :comment =>
1667
+ %(The price asked for a given offer by the respective
1668
+ organization or person.)
1669
+ property :UpdateAction, :label => 'UpdateAction', :comment =>
1670
+ %(The act of managing by changing/editing the state of the
1671
+ object.)
1672
+ property :UseAction, :label => 'UseAction', :comment =>
1673
+ %(The act of applying an object to its intended purpose.)
1674
+ property :UserBlocks, :label => 'UserBlocks', :comment =>
1675
+ %(User interaction: Block this content.)
1676
+ property :UserCheckins, :label => 'UserCheckins', :comment =>
1677
+ %(User interaction: Check-in at a place.)
1678
+ property :UserComments, :label => 'UserComments', :comment =>
1679
+ %(The UserInteraction event in which a user comments on an item.)
1680
+ property :UserDownloads, :label => 'UserDownloads', :comment =>
1681
+ %(User interaction: Download of an item.)
1682
+ property :UserInteraction, :label => 'UserInteraction', :comment =>
1683
+ %(A user interacting with a page)
1684
+ property :UserLikes, :label => 'UserLikes', :comment =>
1685
+ %(User interaction: Like an item.)
1686
+ property :UserPageVisits, :label => 'UserPageVisits', :comment =>
1687
+ %(User interaction: Visit to a web page.)
1688
+ property :UserPlays, :label => 'UserPlays', :comment =>
1689
+ %(User interaction: Play count of an item, for example a video
1690
+ or a song.)
1691
+ property :UserPlusOnes, :label => 'UserPlusOnes', :comment =>
1692
+ %(User interaction: +1.)
1693
+ property :UserTweets, :label => 'UserTweets', :comment =>
1694
+ %(User interaction: Tweets.)
1695
+ property :Vein, :label => 'Vein', :comment =>
1696
+ %(A type of blood vessel that specifically carries blood to the
1697
+ heart.)
1698
+ property :Vessel, :label => 'Vessel', :comment =>
1699
+ %(A component of the human body circulatory system comprised of
1700
+ an intricate network of hollow tubes that transport blood
1701
+ throughout the entire body.)
1702
+ property :VeterinaryCare, :label => 'VeterinaryCare', :comment =>
1703
+ %(A vet's office.)
1704
+ property :VideoGallery, :label => 'VideoGallery', :comment =>
1705
+ %(Web page type: Video gallery page.)
1706
+ property :VideoObject, :label => 'VideoObject', :comment =>
1707
+ %(A video file.)
1708
+ property :ViewAction, :label => 'ViewAction', :comment =>
1709
+ %(The act of consuming static visual content.)
1710
+ property :VisualArtsEvent, :label => 'VisualArtsEvent', :comment =>
1711
+ %(Event type: Visual arts event.)
1712
+ property :Volcano, :label => 'Volcano', :comment =>
1713
+ %(A volcano, like Fuji san)
1714
+ property :VoteAction, :label => 'VoteAction', :comment =>
1715
+ %(The act of expressing a preference from a
1716
+ fixed/finite/structured set of choices/options.)
1717
+ property :WPAdBlock, :label => 'WPAdBlock', :comment =>
1718
+ %(An advertising section of the page.)
1719
+ property :WPFooter, :label => 'WPFooter', :comment =>
1720
+ %(The footer section of the page.)
1721
+ property :WPHeader, :label => 'WPHeader', :comment =>
1722
+ %(The header section of the page.)
1723
+ property :WPSideBar, :label => 'WPSideBar', :comment =>
1724
+ %(A sidebar section of the page.)
1725
+ property :WantAction, :label => 'WantAction', :comment =>
1726
+ %(The act of expressing a desire about the object. An agent
1727
+ wants an object.)
1728
+ property :WarrantyPromise, :label => 'WarrantyPromise', :comment =>
1729
+ %(A structured value representing the duration and scope of
1730
+ services that will be provided to a customer free of charge in
1731
+ case of a defect or malfunction of a product.)
1732
+ property :WarrantyScope, :label => 'WarrantyScope', :comment =>
1733
+ %(A range of of services that will be provided to a customer
1734
+ free of charge in case of a defect or malfunction of a
1735
+ product. Commonly used values:
1736
+ http://purl.org/goodrelations/v1#Labor-BringIn
1737
+ http://purl.org/goodrelations/v1#PartsAndLabor-BringIn
1738
+ http://purl.org/goodrelations/v1#PartsAndLabor-PickUp)
1739
+ property :WatchAction, :label => 'WatchAction', :comment =>
1740
+ %(The act of consuming dynamic/moving visual content.)
1741
+ property :Waterfall, :label => 'Waterfall', :comment =>
1742
+ %(A waterfall, like Niagara)
1743
+ property :WearAction, :label => 'WearAction', :comment =>
1744
+ %(The act of dressing oneself in clothing.)
1745
+ property :WebApplication, :label => 'WebApplication', :comment =>
1746
+ %(Web applications.)
1747
+ property :WebPage, :label => 'WebPage', :comment =>
1748
+ %(A web page. Every web page is implicitly assumed to be
1749
+ declared to be of type WebPage, so the various properties
1750
+ about that webpage, such as <code>breadcrumb</code> may be
1751
+ used. We recommend explicit declaration if these properties
1752
+ are specified, but if they are found outside of an itemscope,
1753
+ they will be assumed to be about the page)
1754
+ property :WebPageElement, :label => 'WebPageElement', :comment =>
1755
+ %(A web page element, like a table or an image)
1756
+ property :WholesaleStore, :label => 'WholesaleStore', :comment =>
1757
+ %(A wholesale store.)
1758
+ property :WinAction, :label => 'WinAction', :comment =>
1759
+ %(The act of achieving victory in a competitive activity.)
1760
+ property :Winery, :label => 'Winery', :comment =>
1761
+ %(A winery.)
1762
+ property :WriteAction, :label => 'WriteAction', :comment =>
1763
+ %(The act of authoring written creative content.)
1764
+ property :Zoo, :label => 'Zoo', :comment =>
1765
+ %(A zoo.)
645
1766
 
646
- # properties
647
- v.query(:property => RDF.type, :object => RDF.Property) do |c|
648
- puts " property #{c.subject.to_s.split('/').last.to_sym.inspect}"
649
- end
650
- end
1767
+ # Property definitions
1768
+ property :about, :label => 'about', :comment =>
1769
+ %(The subject matter of the content.)
1770
+ property :acceptedOffer, :label => 'acceptedOffer', :comment =>
1771
+ %(The offer\(s\) -- e.g., product, quantity and price
1772
+ combinations -- included in the order.)
1773
+ property :acceptedPaymentMethod, :label => 'acceptedPaymentMethod', :comment =>
1774
+ %(The payment method\(s\) accepted by seller for this offer.)
1775
+ property :acceptsReservations, :label => 'acceptsReservations', :comment =>
1776
+ %(Either <code>Yes/No</code>, or a URL at which reservations can
1777
+ be made.)
1778
+ property :accessCode, :label => 'accessCode', :comment =>
1779
+ %(Password, PIN, or access code needed for delivery \(e.g. from
1780
+ a locker\).)
1781
+ property :accessibilityAPI, :label => 'accessibilityAPI', :comment =>
1782
+ %(Indicates that the resource is compatible with the referenced
1783
+ accessibility API \(<a
1784
+ href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas
1785
+ wiki lists possible values</a>\).)
1786
+ property :accessibilityControl, :label => 'accessibilityControl', :comment =>
1787
+ %(Identifies input methods that are sufficient to fully control
1788
+ the described resource \(<a
1789
+ href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas
1790
+ wiki lists possible values</a>\).)
1791
+ property :accessibilityFeature, :label => 'accessibilityFeature', :comment =>
1792
+ %(Content features of the resource, such as accessible media,
1793
+ alternatives and supported enhancements for accessibility \(<a
1794
+ href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas
1795
+ wiki lists possible values</a>\).)
1796
+ property :accessibilityHazard, :label => 'accessibilityHazard', :comment =>
1797
+ %(A characteristic of the described resource that is
1798
+ physiologically dangerous to some users. Related to WCAG 2.0
1799
+ guideline 2.3. \(<a
1800
+ href="http://www.w3.org/wiki/WebSchemas/Accessibility">WebSchemas
1801
+ wiki lists possible values</a>\))
1802
+ property :accountablePerson, :label => 'accountablePerson', :comment =>
1803
+ %(Specifies the Person that is legally accountable for the
1804
+ CreativeWork.)
1805
+ property :acquiredFrom, :label => 'acquiredFrom', :comment =>
1806
+ %(The organization or person from which the product was
1807
+ acquired.)
1808
+ property :action, :label => 'action', :comment =>
1809
+ %(The movement the muscle generates.)
1810
+ property :activeIngredient, :label => 'activeIngredient', :comment =>
1811
+ %(An active ingredient, typically chemical compounds and/or
1812
+ biologic substances.)
1813
+ property :activityDuration, :label => 'activityDuration', :comment =>
1814
+ %(Length of time to engage in the activity.)
1815
+ property :activityFrequency, :label => 'activityFrequency', :comment =>
1816
+ %(How often one should engage in the activity.)
1817
+ property :actor, :label => 'actor', :comment =>
1818
+ %(A cast member of the movie, tv/radio series, season, episode,
1819
+ or video.)
1820
+ property :actors, :label => 'actors', :comment =>
1821
+ %(A cast member of the movie, tv/radio series, season, episode,
1822
+ or video. \(legacy spelling; see singular form, actor\))
1823
+ property :addOn, :label => 'addOn', :comment =>
1824
+ %(An additional offer that can only be obtained in combination
1825
+ with the first base offer \(e.g. supplements and extensions
1826
+ that are available for a surcharge\).)
1827
+ property :additionalName, :label => 'additionalName', :comment =>
1828
+ %(An additional name for a Person, can be used for a middle
1829
+ name.)
1830
+ property :additionalType, :label => 'additionalType', :comment =>
1831
+ %(An additional type for the item, typically used for adding
1832
+ more specific types from external vocabularies in microdata
1833
+ syntax. This is a relationship between something and a class
1834
+ that the thing is in. In RDFa syntax, it is better to use the
1835
+ native RDFa syntax - the 'typeof' attribute - for multiple
1836
+ types. Schema.org tools may have only weaker understanding of
1837
+ extra types, in particular those defined externally.)
1838
+ property :additionalVariable, :label => 'additionalVariable', :comment =>
1839
+ %(Any additional component of the exercise prescription that may
1840
+ need to be articulated to the patient. This may include the
1841
+ order of exercises, the number of repetitions of movement,
1842
+ quantitative distance, progressions over time, etc.)
1843
+ property :address, :label => 'address', :comment =>
1844
+ %(Physical address of the item.)
1845
+ property :addressCountry, :label => 'addressCountry', :comment =>
1846
+ %(The country. For example, USA. You can also provide the
1847
+ two-letter <a
1848
+ href='http://en.wikipedia.org/wiki/ISO_3166-1'>ISO 3166-1
1849
+ alpha-2 country code</a>.)
1850
+ property :addressLocality, :label => 'addressLocality', :comment =>
1851
+ %(The locality. For example, Mountain View.)
1852
+ property :addressRegion, :label => 'addressRegion', :comment =>
1853
+ %(The region. For example, CA.)
1854
+ property :administrationRoute, :label => 'administrationRoute', :comment =>
1855
+ %(A route by which this drug may be administered, e.g. 'oral'.)
1856
+ property :advanceBookingRequirement, :label => 'advanceBookingRequirement', :comment =>
1857
+ %(The amount of time that is required between accepting the
1858
+ offer and the actual usage of the resource or service.)
1859
+ property :adverseOutcome, :label => 'adverseOutcome', :comment =>
1860
+ %(A possible complication and/or side effect of this therapy. If
1861
+ it is known that an adverse outcome is serious \(resulting in
1862
+ death, disability, or permanent damage; requiring
1863
+ hospitalization; or is otherwise life-threatening or requires
1864
+ immediate medical attention\), tag it as a
1865
+ seriouseAdverseOutcome instead.)
1866
+ property :affectedBy, :label => 'affectedBy', :comment =>
1867
+ %(Drugs that affect the test's results.)
1868
+ property :affiliation, :label => 'affiliation', :comment =>
1869
+ %(An organization that this person is affiliated with. For
1870
+ example, a school/university, a club, or a team.)
1871
+ property :agent, :label => 'agent', :comment =>
1872
+ %(The direct performer or driver of the action \(animate or
1873
+ inanimate\). e.g. *John* wrote a book.)
1874
+ property :aggregateRating, :label => 'aggregateRating', :comment =>
1875
+ %(The overall rating, based on a collection of reviews or
1876
+ ratings, of the item.)
1877
+ property :album, :label => 'album', :comment =>
1878
+ %(A music album.)
1879
+ property :albums, :label => 'albums', :comment =>
1880
+ %(A collection of music albums \(legacy spelling; see singular
1881
+ form, album\).)
1882
+ property :alcoholWarning, :label => 'alcoholWarning', :comment =>
1883
+ %(Any precaution, guidance, contraindication, etc. related to
1884
+ consumption of alcohol while taking this drug.)
1885
+ property :algorithm, :label => 'algorithm', :comment =>
1886
+ %(The algorithm or rules to follow to compute the score.)
1887
+ property :alignmentType, :label => 'alignmentType', :comment =>
1888
+ %(A category of alignment between the learning resource and the
1889
+ framework node. Recommended values include: 'assesses',
1890
+ 'teaches', 'requires', 'textComplexity', 'readingLevel',
1891
+ 'educationalSubject', and 'educationLevel'.)
1892
+ property :alternateName, :label => 'alternateName', :comment =>
1893
+ %(An alias for the item.)
1894
+ property :alternativeHeadline, :label => 'alternativeHeadline', :comment =>
1895
+ %(A secondary title of the CreativeWork.)
1896
+ property :alumni, :label => 'alumni', :comment =>
1897
+ %(Alumni of educational organization.)
1898
+ property :alumniOf, :label => 'alumniOf', :comment =>
1899
+ %(An educational organizations that the person is an alumni of.)
1900
+ property :amountOfThisGood, :label => 'amountOfThisGood', :comment =>
1901
+ %(The quantity of the goods included in the offer.)
1902
+ property :antagonist, :label => 'antagonist', :comment =>
1903
+ %(The muscle whose action counteracts the specified muscle.)
1904
+ property :applicableLocation, :label => 'applicableLocation', :comment =>
1905
+ %(The location in which the status applies.)
1906
+ property :applicationCategory, :label => 'applicationCategory', :comment =>
1907
+ %(Type of software application, e.g. "Game, Multimedia".)
1908
+ property :applicationSubCategory, :label => 'applicationSubCategory', :comment =>
1909
+ %(Subcategory of the application, e.g. "Arcade Game".)
1910
+ property :applicationSuite, :label => 'applicationSuite', :comment =>
1911
+ %(The name of the application suite to which the application
1912
+ belongs \(e.g. Excel belongs to Office\))
1913
+ property :appliesToDeliveryMethod, :label => 'appliesToDeliveryMethod', :comment =>
1914
+ %(The delivery method\(s\) to which the delivery charge or
1915
+ payment charge specification applies.)
1916
+ property :appliesToPaymentMethod, :label => 'appliesToPaymentMethod', :comment =>
1917
+ %(The payment method\(s\) to which the payment charge
1918
+ specification applies.)
1919
+ property :area, :label => 'area', :comment =>
1920
+ %(The area within which users can expect to reach the broadcast
1921
+ service.)
1922
+ property :areaServed, :label => 'areaServed', :comment =>
1923
+ %(The location served by this contact point \(e.g., a phone
1924
+ number intended for Europeans vs. North Americans or only
1925
+ within the United States.\))
1926
+ property :arterialBranch, :label => 'arterialBranch', :comment =>
1927
+ %(The branches that comprise the arterial structure.)
1928
+ property :articleBody, :label => 'articleBody', :comment =>
1929
+ %(The actual body of the article.)
1930
+ property :articleSection, :label => 'articleSection', :comment =>
1931
+ %(Articles may belong to one or more 'sections' in a magazine or
1932
+ newspaper, such as Sports, Lifestyle, etc.)
1933
+ property :aspect, :label => 'aspect', :comment =>
1934
+ %(An aspect of medical practice that is considered on the page,
1935
+ such as 'diagnosis', 'treatment', 'causes', 'prognosis',
1936
+ 'etiology', 'epidemiology', etc.)
1937
+ property :assembly, :label => 'assembly', :comment =>
1938
+ %(Library file name e.g., mscorlib.dll, system.web.dll)
1939
+ property :assemblyVersion, :label => 'assemblyVersion', :comment =>
1940
+ %(Associated product/technology version. e.g., .NET Framework
1941
+ 4.5)
1942
+ property :associatedAnatomy, :label => 'associatedAnatomy', :comment =>
1943
+ %(The anatomy of the underlying organ system or structures
1944
+ associated with this entity.)
1945
+ property :associatedArticle, :label => 'associatedArticle', :comment =>
1946
+ %(A NewsArticle associated with the Media Object.)
1947
+ property :associatedMedia, :label => 'associatedMedia', :comment =>
1948
+ %(The media objects that encode this creative work. This
1949
+ property is a synonym for encodings.)
1950
+ property :associatedPathophysiology, :label => 'associatedPathophysiology', :comment =>
1951
+ %(If applicable, a description of the pathophysiology associated
1952
+ with the anatomical system, including potential abnormal
1953
+ changes in the mechanical, physical, and biochemical functions
1954
+ of the system.)
1955
+ property :attendee, :label => 'attendee', :comment =>
1956
+ %(A person or organization attending the event.)
1957
+ property :attendees, :label => 'attendees', :comment =>
1958
+ %(A person attending the event \(legacy spelling; see singular
1959
+ form, attendee\).)
1960
+ property :audience, :label => 'audience', :comment =>
1961
+ %(The intended audience of the item, i.e. the group for whom the
1962
+ item was created.)
1963
+ property :audienceType, :label => 'audienceType', :comment =>
1964
+ %(The target group associated with a given audience \(e.g.
1965
+ veterans, car owners, musicians, etc.\) domain: Audience
1966
+ Range: Text)
1967
+ property :audio, :label => 'audio', :comment =>
1968
+ %(An embedded audio object.)
1969
+ property :author, :label => 'author', :comment =>
1970
+ %(The author of this content. Please note that author is special
1971
+ in that HTML 5 provides a special mechanism for indicating
1972
+ authorship via the rel tag. That is equivalent to this and may
1973
+ be used interchangeably.)
1974
+ property :availability, :label => 'availability', :comment =>
1975
+ %(The availability of this item&#x2014;for example In stock, Out
1976
+ of stock, Pre-order, etc.)
1977
+ property :availabilityEnds, :label => 'availabilityEnds', :comment =>
1978
+ %(The end of the availability of the product or service included
1979
+ in the offer.)
1980
+ property :availabilityStarts, :label => 'availabilityStarts', :comment =>
1981
+ %(The beginning of the availability of the product or service
1982
+ included in the offer.)
1983
+ property :availableAtOrFrom, :label => 'availableAtOrFrom', :comment =>
1984
+ %(The place\(s\) from which the offer can be obtained \(e.g.
1985
+ store locations\).)
1986
+ property :availableChannel, :label => 'availableChannel', :comment =>
1987
+ %(A means of accessing the service \(e.g. a phone bank, a web
1988
+ site, a location, etc.\))
1989
+ property :availableDeliveryMethod, :label => 'availableDeliveryMethod', :comment =>
1990
+ %(The delivery method\(s\) available for this offer.)
1991
+ property :availableFrom, :label => 'availableFrom', :comment =>
1992
+ %(When the item is available for pickup from the store, locker,
1993
+ etc.)
1994
+ property :availableIn, :label => 'availableIn', :comment =>
1995
+ %(The location in which the strength is available.)
1996
+ property :availableLanguage, :label => 'availableLanguage', :comment =>
1997
+ %(A language someone may use with the item.)
1998
+ property :availableService, :label => 'availableService', :comment =>
1999
+ %(A medical service available from this provider.)
2000
+ property :availableStrength, :label => 'availableStrength', :comment =>
2001
+ %(An available dosage strength for the drug.)
2002
+ property :availableTest, :label => 'availableTest', :comment =>
2003
+ %(A diagnostic test or procedure offered by this lab.)
2004
+ property :availableThrough, :label => 'availableThrough', :comment =>
2005
+ %(After this date, the item will no longer be available for
2006
+ pickup.)
2007
+ property :award, :label => 'award', :comment =>
2008
+ %(An award won by this person or for this creative work.)
2009
+ property :awards, :label => 'awards', :comment =>
2010
+ %(Awards won by this person or for this creative work. \(legacy
2011
+ spelling; see singular form, award\))
2012
+ property :background, :label => 'background', :comment =>
2013
+ %(Descriptive information establishing a historical perspective
2014
+ on the supplement. May include the rationale for the name, the
2015
+ population where the supplement first came to prominence, etc.)
2016
+ property :baseSalary, :label => 'baseSalary', :comment =>
2017
+ %(The base salary of the job.)
2018
+ property :benefits, :label => 'benefits', :comment =>
2019
+ %(Description of benefits associated with the job.)
2020
+ property :bestRating, :label => 'bestRating', :comment =>
2021
+ %(The highest value allowed in this rating system. If bestRating
2022
+ is omitted, 5 is assumed.)
2023
+ property :billingAddress, :label => 'billingAddress', :comment =>
2024
+ %(The billing address for the order.)
2025
+ property :billingIncrement, :label => 'billingIncrement', :comment =>
2026
+ %(This property specifies the minimal quantity and rounding
2027
+ increment that will be the basis for the billing. The unit of
2028
+ measurement is specified by the unitCode property.)
2029
+ property :biomechnicalClass, :label => 'biomechnicalClass', :comment =>
2030
+ %(The biomechanical properties of the bone.)
2031
+ property :birthDate, :label => 'birthDate', :comment =>
2032
+ %(Date of birth.)
2033
+ property :bitrate, :label => 'bitrate', :comment =>
2034
+ %(The bitrate of the media object.)
2035
+ property :blogPost, :label => 'blogPost', :comment =>
2036
+ %(A posting that is part of this blog.)
2037
+ property :blogPosts, :label => 'blogPosts', :comment =>
2038
+ %(The postings that are part of this blog \(legacy spelling; see
2039
+ singular form, blogPost\).)
2040
+ property :bloodSupply, :label => 'bloodSupply', :comment =>
2041
+ %(The blood vessel that carries blood from the heart to the
2042
+ muscle.)
2043
+ property :bodyLocation, :label => 'bodyLocation', :comment =>
2044
+ %(Location in the body of the anatomical structure.)
2045
+ property :bookEdition, :label => 'bookEdition', :comment =>
2046
+ %(The edition of the book.)
2047
+ property :bookFormat, :label => 'bookFormat', :comment =>
2048
+ %(The format of the book.)
2049
+ property :borrower, :label => 'borrower', :comment =>
2050
+ %(A sub property of participant. The person that borrows the
2051
+ object being lent.)
2052
+ property :box, :label => 'box', :comment =>
2053
+ %(A polygon is the area enclosed by a point-to-point path for
2054
+ which the starting and ending points are the same. A polygon
2055
+ is expressed as a series of four or more spacedelimited points
2056
+ where the first and final points are identical.)
2057
+ property :branch, :label => 'branch', :comment =>
2058
+ %(The branches that delineate from the nerve bundle.)
2059
+ property :branchOf, :label => 'branchOf', :comment =>
2060
+ %(The larger organization that this local business is a branch
2061
+ of, if any.)
2062
+ property :brand, :label => 'brand', :comment =>
2063
+ %(The brand\(s\) associated with a product or service, or the
2064
+ brand\(s\) maintained by an organization or business person.)
2065
+ property :breadcrumb, :label => 'breadcrumb', :comment =>
2066
+ %(A set of links that can help a user understand and navigate a
2067
+ website hierarchy.)
2068
+ property :breastfeedingWarning, :label => 'breastfeedingWarning', :comment =>
2069
+ %(Any precaution, guidance, contraindication, etc. related to
2070
+ this drug's use by breastfeeding mothers.)
2071
+ property :broadcaster, :label => 'broadcaster', :comment =>
2072
+ %(The organization owning or operating the broadcast service.)
2073
+ property :browserRequirements, :label => 'browserRequirements', :comment =>
2074
+ %(Specifies browser requirements in human-readable text. For
2075
+ example,"requires HTML5 support".)
2076
+ property :businessFunction, :label => 'businessFunction', :comment =>
2077
+ %(The business function \(e.g. sell, lease, repair, dispose\) of
2078
+ the offer or component of a bundle \(TypeAndQuantityNode\).
2079
+ The default is http://purl.org/goodrelations/v1#Sell.)
2080
+ property :buyer, :label => 'buyer', :comment =>
2081
+ %(A sub property of participant. The
2082
+ participant/person/organization that bought the object.)
2083
+ property :byArtist, :label => 'byArtist', :comment =>
2084
+ %(The artist that performed this album or recording.)
2085
+ property :calories, :label => 'calories', :comment =>
2086
+ %(The number of calories)
2087
+ property :candidate, :label => 'candidate', :comment =>
2088
+ %(A sub property of object. The candidate subject of this
2089
+ action.)
2090
+ property :caption, :label => 'caption', :comment =>
2091
+ %(The caption for this object.)
2092
+ property :carbohydrateContent, :label => 'carbohydrateContent', :comment =>
2093
+ %(The number of grams of carbohydrates.)
2094
+ property :carrier, :label => 'carrier', :comment =>
2095
+ %(The party responsible for the parcel delivery.)
2096
+ property :carrierRequirements, :label => 'carrierRequirements', :comment =>
2097
+ %(Specifies specific carrier\(s\) requirements for the
2098
+ application \(e.g. an application may only work on a specific
2099
+ carrier network\).)
2100
+ property :catalog, :label => 'catalog', :comment =>
2101
+ %(A data catalog which contains a dataset.)
2102
+ property :category, :label => 'category', :comment =>
2103
+ %(A category for the item. Greater signs or slashes can be used
2104
+ to informally indicate a category hierarchy.)
2105
+ property :cause, :label => 'cause', :comment =>
2106
+ %(An underlying cause. More specifically, one of the causative
2107
+ agent\(s\) that are most directly responsible for the
2108
+ pathophysiologic process that eventually results in the
2109
+ occurrence.)
2110
+ property :causeOf, :label => 'causeOf', :comment =>
2111
+ %(The condition, complication, symptom, sign, etc. caused.)
2112
+ property :childMaxAge, :label => 'childMaxAge', :comment =>
2113
+ %(Maximal age of the child)
2114
+ property :childMinAge, :label => 'childMinAge', :comment =>
2115
+ %(Minimal age of the child)
2116
+ property :children, :label => 'children', :comment =>
2117
+ %(A child of the person.)
2118
+ property :cholesterolContent, :label => 'cholesterolContent', :comment =>
2119
+ %(The number of milligrams of cholesterol.)
2120
+ property :circle, :label => 'circle', :comment =>
2121
+ %(A circle is the circular region of a specified radius centered
2122
+ at a specified latitude and longitude. A circle is expressed
2123
+ as a pair followed by a radius in meters.)
2124
+ property :citation, :label => 'citation', :comment =>
2125
+ %(A citation or reference to another creative work, such as
2126
+ another publication, web page, scholarly article, etc. NOTE:
2127
+ Candidate for promotion to ScholarlyArticle.)
2128
+ property :clincalPharmacology, :label => 'clincalPharmacology', :comment =>
2129
+ %(Description of the absorption and elimination of drugs,
2130
+ including their concentration \(pharmacokinetics, pK\) and
2131
+ biological effects \(pharmacodynamics, pD\).)
2132
+ property :clipNumber, :label => 'clipNumber', :comment =>
2133
+ %(Position of the clip within an ordered group of clips.)
2134
+ property :closes, :label => 'closes', :comment =>
2135
+ %(The closing hour of the place or service on the given day\(s\)
2136
+ of the week.)
2137
+ property :code, :label => 'code', :comment =>
2138
+ %(A medical code for the entity, taken from a controlled
2139
+ vocabulary or ontology such as ICD-9, DiseasesDB, MeSH,
2140
+ SNOMED-CT, RxNorm, etc.)
2141
+ property :codeRepository, :label => 'codeRepository', :comment =>
2142
+ %(Link to the repository where the un-compiled, human readable
2143
+ code and related code is located \(SVN, github, CodePlex\))
2144
+ property :codeValue, :label => 'codeValue', :comment =>
2145
+ %(The actual code.)
2146
+ property :codingSystem, :label => 'codingSystem', :comment =>
2147
+ %(The coding system, e.g. 'ICD-10'.)
2148
+ property :colleague, :label => 'colleague', :comment =>
2149
+ %(A colleague of the person.)
2150
+ property :colleagues, :label => 'colleagues', :comment =>
2151
+ %(A colleague of the person \(legacy spelling; see singular
2152
+ form, colleague\).)
2153
+ property :collection, :label => 'collection', :comment =>
2154
+ %(A sub property of object. The collection target of the action.)
2155
+ property :color, :label => 'color', :comment =>
2156
+ %(The color of the product.)
2157
+ property :comment, :label => 'comment', :comment =>
2158
+ %(Comments, typically from users, on this CreativeWork.)
2159
+ property :commentText, :label => 'commentText', :comment =>
2160
+ %(The text of the UserComment.)
2161
+ property :commentTime, :label => 'commentTime', :comment =>
2162
+ %(The time at which the UserComment was made.)
2163
+ property :comprisedOf, :label => 'comprisedOf', :comment =>
2164
+ %(The underlying anatomical structures, such as organs, that
2165
+ comprise the anatomical system.)
2166
+ property :confirmationNumber, :label => 'confirmationNumber', :comment =>
2167
+ %(A number that confirms the given order.)
2168
+ property :connectedTo, :label => 'connectedTo', :comment =>
2169
+ %(Other anatomical structures to which this structure is
2170
+ connected.)
2171
+ property :contactOption, :label => 'contactOption', :comment =>
2172
+ %(An option available on this contact point \(e.g. a toll-free
2173
+ number or support for hearing-impaired callers.\))
2174
+ property :contactPoint, :label => 'contactPoint', :comment =>
2175
+ %(A contact point for a person or organization.)
2176
+ property :contactPoints, :label => 'contactPoints', :comment =>
2177
+ %(A contact point for a person or organization \(legacy
2178
+ spelling; see singular form, contactPoint\).)
2179
+ property :contactType, :label => 'contactType', :comment =>
2180
+ %(A person or organization can have different contact points,
2181
+ for different purposes. For example, a sales contact point, a
2182
+ PR contact point and so on. This property is used to specify
2183
+ the kind of contact point.)
2184
+ property :containedIn, :label => 'containedIn', :comment =>
2185
+ %(The basic containment relation between places.)
2186
+ property :contentLocation, :label => 'contentLocation', :comment =>
2187
+ %(The location of the content.)
2188
+ property :contentRating, :label => 'contentRating', :comment =>
2189
+ %(Official rating of a piece of content&#x2014;for example,'MPAA
2190
+ PG-13'.)
2191
+ property :contentSize, :label => 'contentSize', :comment =>
2192
+ %(File size in \(mega/kilo\) bytes.)
2193
+ property :contentUrl, :label => 'contentUrl', :comment =>
2194
+ %(Actual bytes of the media object, for example the image file
2195
+ or video file. \(previous spelling: contentURL\))
2196
+ property :contraindication, :label => 'contraindication', :comment =>
2197
+ %(A contraindication for this therapy.)
2198
+ property :contributor, :label => 'contributor', :comment =>
2199
+ %(A secondary contributor to the CreativeWork.)
2200
+ property :cookTime, :label => 'cookTime', :comment =>
2201
+ %(The time it takes to actually cook the dish, in <a
2202
+ href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration
2203
+ format</a>.)
2204
+ property :cookingMethod, :label => 'cookingMethod', :comment =>
2205
+ %(The method of cooking, such as Frying, Steaming, ...)
2206
+ property :copyrightHolder, :label => 'copyrightHolder', :comment =>
2207
+ %(The party holding the legal copyright to the CreativeWork.)
2208
+ property :copyrightYear, :label => 'copyrightYear', :comment =>
2209
+ %(The year during which the claimed copyright for the
2210
+ CreativeWork was first asserted.)
2211
+ property :cost, :label => 'cost', :comment =>
2212
+ %(Cost per unit of the drug, as reported by the source being
2213
+ tagged.)
2214
+ property :costCategory, :label => 'costCategory', :comment =>
2215
+ %(The category of cost, such as wholesale, retail, reimbursement
2216
+ cap, etc.)
2217
+ property :costCurrency, :label => 'costCurrency', :comment =>
2218
+ %(The currency \(in 3-letter <a
2219
+ href=http://en.wikipedia.org/wiki/ISO_4217>ISO 4217
2220
+ format</a>\) of the drug cost.)
2221
+ property :costOrigin, :label => 'costOrigin', :comment =>
2222
+ %(Additional details to capture the origin of the cost data. For
2223
+ example, 'Medicare Part B'.)
2224
+ property :costPerUnit, :label => 'costPerUnit', :comment =>
2225
+ %(The cost per unit of the drug.)
2226
+ property :countriesNotSupported, :label => 'countriesNotSupported', :comment =>
2227
+ %(Countries for which the application is not supported. You can
2228
+ also provide the two-letter ISO 3166-1 alpha-2 country code.)
2229
+ property :countriesSupported, :label => 'countriesSupported', :comment =>
2230
+ %(Countries for which the application is supported. You can also
2231
+ provide the two-letter ISO 3166-1 alpha-2 country code.)
2232
+ property :course, :label => 'course', :comment =>
2233
+ %(A sub property of location. The course where this action was
2234
+ taken.)
2235
+ property :creator, :label => 'creator', :comment =>
2236
+ %(The creator/author of this CreativeWork or UserComments. This
2237
+ is the same as the Author property for CreativeWork.)
2238
+ property :currenciesAccepted, :label => 'currenciesAccepted', :comment =>
2239
+ %(The currency accepted \(in <a
2240
+ href='http://en.wikipedia.org/wiki/ISO_4217'>ISO 4217 currency
2241
+ format</a>\).)
2242
+ property :customer, :label => 'customer', :comment =>
2243
+ %(Party placing the order.)
2244
+ property :dataset, :label => 'dataset', :comment =>
2245
+ %(A dataset contained in a catalog.)
2246
+ property :dateCreated, :label => 'dateCreated', :comment =>
2247
+ %(The date on which the CreativeWork was created.)
2248
+ property :dateModified, :label => 'dateModified', :comment =>
2249
+ %(The date on which the CreativeWork was most recently modified.)
2250
+ property :datePosted, :label => 'datePosted', :comment =>
2251
+ %(Publication date for the job posting.)
2252
+ property :datePublished, :label => 'datePublished', :comment =>
2253
+ %(Date of first broadcast/publication.)
2254
+ property :dateline, :label => 'dateline', :comment =>
2255
+ %(The location where the NewsArticle was produced.)
2256
+ property :dayOfWeek, :label => 'dayOfWeek', :comment =>
2257
+ %(The day of the week for which these opening hours are valid.)
2258
+ property :deathDate, :label => 'deathDate', :comment =>
2259
+ %(Date of death.)
2260
+ property :deliveryAddress, :label => 'deliveryAddress', :comment =>
2261
+ %(Destination address.)
2262
+ property :deliveryLeadTime, :label => 'deliveryLeadTime', :comment =>
2263
+ %(The typical delay between the receipt of the order and the
2264
+ goods leaving the warehouse.)
2265
+ property :deliveryMethod, :label => 'deliveryMethod', :comment =>
2266
+ %(A sub property of instrument. The method of delivery)
2267
+ property :deliveryStatus, :label => 'deliveryStatus', :comment =>
2268
+ %(New entry added as the package passes through each leg of its
2269
+ journey \(from shipment to final delivery\).)
2270
+ property :department, :label => 'department', :comment =>
2271
+ %(A relationship between an organization and a department of
2272
+ that organization, also described as an organization
2273
+ \(allowing different urls, logos, opening hours\). For
2274
+ example: a store with a pharmacy, or a bakery with a cafe.)
2275
+ property :dependencies, :label => 'dependencies', :comment =>
2276
+ %(Prerequisites needed to fulfill steps in article.)
2277
+ property :depth, :label => 'depth', :comment =>
2278
+ %(The depth of the product.)
2279
+ property :description, :label => 'description', :comment =>
2280
+ %(A short description of the item.)
2281
+ property :device, :label => 'device', :comment =>
2282
+ %(Device required to run the application. Used in cases where a
2283
+ specific make/model is required to run the application.)
2284
+ property :diagnosis, :label => 'diagnosis', :comment =>
2285
+ %(One or more alternative conditions considered in the
2286
+ differential diagnosis process.)
2287
+ property :diagram, :label => 'diagram', :comment =>
2288
+ %(An image containing a diagram that illustrates the structure
2289
+ and/or its component substructures and/or connections with
2290
+ other structures.)
2291
+ property :diet, :label => 'diet', :comment =>
2292
+ %(A sub property of instrument. The died used in this action.)
2293
+ property :dietFeatures, :label => 'dietFeatures', :comment =>
2294
+ %(Nutritional information specific to the dietary plan. May
2295
+ include dietary recommendations on what foods to avoid, what
2296
+ foods to consume, and specific alterations/deviations from the
2297
+ USDA or other regulatory body's approved dietary guidelines.)
2298
+ property :differentialDiagnosis, :label => 'differentialDiagnosis', :comment =>
2299
+ %(One of a set of differential diagnoses for the condition.
2300
+ Specifically, a closely-related or competing diagnosis
2301
+ typically considered later in the cognitive process whereby
2302
+ this medical condition is distinguished from others most
2303
+ likely responsible for a similar collection of signs and
2304
+ symptoms to reach the most parsimonious diagnosis or diagnoses
2305
+ in a patient.)
2306
+ property :director, :label => 'director', :comment =>
2307
+ %(The director of the movie, tv/radio episode or series.)
2308
+ property :directors, :label => 'directors', :comment =>
2309
+ %(The director of the movie, tv/radio episode or series.
2310
+ \(legacy spelling; see singular form, director\))
2311
+ property :discount, :label => 'discount', :comment =>
2312
+ %(Any discount applied \(to an Order\).)
2313
+ property :discountCode, :label => 'discountCode', :comment =>
2314
+ %(Code used to redeem a discount.)
2315
+ property :discountCurrency, :label => 'discountCurrency', :comment =>
2316
+ %(The currency \(in 3-letter ISO 4217 format\) of the discount.)
2317
+ property :discusses, :label => 'discusses', :comment =>
2318
+ %(Specifies the CreativeWork associated with the UserComment.)
2319
+ property :discussionUrl, :label => 'discussionUrl', :comment =>
2320
+ %(A link to the page containing the comments of the
2321
+ CreativeWork.)
2322
+ property :distance, :label => 'distance', :comment =>
2323
+ %(A sub property of asset. The distance travelled.)
2324
+ property :distinguishingSign, :label => 'distinguishingSign', :comment =>
2325
+ %(One of a set of signs and symptoms that can be used to
2326
+ distinguish this diagnosis from others in the differential
2327
+ diagnosis.)
2328
+ property :distribution, :label => 'distribution', :comment =>
2329
+ %(A downloadable form of this dataset, at a specific location,
2330
+ in a specific format.)
2331
+ property :domainIncludes, :label => 'domainIncludes', :comment =>
2332
+ %(Relates a property to a class that is \(one of\) the type\(s\)
2333
+ the property is expected to be used on.)
2334
+ property :doorTime, :label => 'doorTime', :comment =>
2335
+ %(The time admission will commence.)
2336
+ property :dosageForm, :label => 'dosageForm', :comment =>
2337
+ %(A dosage form in which this drug/supplement is available, e.g.
2338
+ 'tablet', 'suspension', 'injection'.)
2339
+ property :doseSchedule, :label => 'doseSchedule', :comment =>
2340
+ %(A dosing schedule for the drug for a given population, either
2341
+ observed, recommended, or maximum dose based on the type used.)
2342
+ property :doseUnit, :label => 'doseUnit', :comment =>
2343
+ %(The unit of the dose, e.g. 'mg'.)
2344
+ property :doseValue, :label => 'doseValue', :comment =>
2345
+ %(The value of the dose, e.g. 500.)
2346
+ property :downloadUrl, :label => 'downloadUrl', :comment =>
2347
+ %(If the file can be downloaded, URL to download the binary.)
2348
+ property :drainsTo, :label => 'drainsTo', :comment =>
2349
+ %(The vasculature that the vein drains into.)
2350
+ property :drug, :label => 'drug', :comment =>
2351
+ %(A drug in this drug class.)
2352
+ property :drugClass, :label => 'drugClass', :comment =>
2353
+ %(The class of drug this belongs to \(e.g., statins\).)
2354
+ property :drugUnit, :label => 'drugUnit', :comment =>
2355
+ %(The unit in which the drug is measured, e.g. '5 mg tablet'.)
2356
+ property :duns, :label => 'duns', :comment =>
2357
+ %(The Dun & Bradstreet DUNS number for identifying an
2358
+ organization or business person.)
2359
+ property :duplicateTherapy, :label => 'duplicateTherapy', :comment =>
2360
+ %(A therapy that duplicates or overlaps this one.)
2361
+ property :duration, :label => 'duration', :comment =>
2362
+ %(The duration of the item \(movie, audio recording, event,
2363
+ etc.\) in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO
2364
+ 8601 date format</a>.)
2365
+ property :durationOfWarranty, :label => 'durationOfWarranty', :comment =>
2366
+ %(The duration of the warranty promise. Common unitCode values
2367
+ are ANN for year, MON for months, or DAY for days.)
2368
+ property :editor, :label => 'editor', :comment =>
2369
+ %(Specifies the Person who edited the CreativeWork.)
2370
+ property :educationRequirements, :label => 'educationRequirements', :comment =>
2371
+ %(Educational background needed for the position.)
2372
+ property :educationalAlignment, :label => 'educationalAlignment', :comment =>
2373
+ %(An alignment to an established educational framework.)
2374
+ property :educationalFramework, :label => 'educationalFramework', :comment =>
2375
+ %(The framework to which the resource being described is
2376
+ aligned.)
2377
+ property :educationalRole, :label => 'educationalRole', :comment =>
2378
+ %(An educationalRole of an EducationalAudience)
2379
+ property :educationalUse, :label => 'educationalUse', :comment =>
2380
+ %(The purpose of a work in the context of education; for
2381
+ example, 'assignment', 'group work'.)
2382
+ property :elevation, :label => 'elevation', :comment =>
2383
+ %(The elevation of a location.)
2384
+ property :eligibleCustomerType, :label => 'eligibleCustomerType', :comment =>
2385
+ %(The type\(s\) of customers for which the given offer is valid.)
2386
+ property :eligibleDuration, :label => 'eligibleDuration', :comment =>
2387
+ %(The duration for which the given offer is valid.)
2388
+ property :eligibleQuantity, :label => 'eligibleQuantity', :comment =>
2389
+ %(The interval and unit of measurement of ordering quantities
2390
+ for which the offer or price specification is valid. This
2391
+ allows e.g. specifying that a certain freight charge is valid
2392
+ only for a certain quantity.)
2393
+ property :eligibleRegion, :label => 'eligibleRegion', :comment =>
2394
+ %(The ISO 3166-1 \(ISO 3166-1 alpha-2\) or ISO 3166-2 code, or
2395
+ the GeoShape for the geo-political region\(s\) for which the
2396
+ offer or delivery charge specification is valid.)
2397
+ property :eligibleTransactionVolume, :label => 'eligibleTransactionVolume', :comment =>
2398
+ %(The transaction volume, in a monetary unit, for which the
2399
+ offer or price specification is valid, e.g. for indicating a
2400
+ minimal purchasing volume, to express free shipping above a
2401
+ certain order volume, or to limit the acceptance of credit
2402
+ cards to purchases to a certain minimal amount.)
2403
+ property :email, :label => 'email', :comment =>
2404
+ %(Email address.)
2405
+ property :embedUrl, :label => 'embedUrl', :comment =>
2406
+ %(A URL pointing to a player for a specific video. In general,
2407
+ this is the information in the <code>src</code> element of an
2408
+ <code>embed</code> tag and should not be the same as the
2409
+ content of the <code>loc</code> tag. \(previous spelling:
2410
+ embedURL\))
2411
+ property :employee, :label => 'employee', :comment =>
2412
+ %(Someone working for this organization.)
2413
+ property :employees, :label => 'employees', :comment =>
2414
+ %(People working for this organization. \(legacy spelling; see
2415
+ singular form, employee\))
2416
+ property :employmentType, :label => 'employmentType', :comment =>
2417
+ %(Type of employment \(e.g. full-time, part-time, contract,
2418
+ temporary, seasonal, internship\).)
2419
+ property :encodesCreativeWork, :label => 'encodesCreativeWork', :comment =>
2420
+ %(The creative work encoded by this media object)
2421
+ property :encoding, :label => 'encoding', :comment =>
2422
+ %(A media object that encode this CreativeWork.)
2423
+ property :encodingFormat, :label => 'encodingFormat', :comment =>
2424
+ %(mp3, mpeg4, etc.)
2425
+ property :encodings, :label => 'encodings', :comment =>
2426
+ %(The media objects that encode this creative work \(legacy
2427
+ spelling; see singular form, encoding\).)
2428
+ property :endDate, :label => 'endDate', :comment =>
2429
+ %(The end date and time of the event or item \(in <a
2430
+ href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date
2431
+ format</a>\).)
2432
+ property :endTime, :label => 'endTime', :comment =>
2433
+ %(When the Action was performed: end time. This is for actions
2434
+ that span a period of time. e.g. John wrote a book from
2435
+ January to *December*.)
2436
+ property :endorsee, :label => 'endorsee', :comment =>
2437
+ %(A sub property of participant. The person/organization being
2438
+ supported.)
2439
+ property :endorsers, :label => 'endorsers', :comment =>
2440
+ %(People or organizations that endorse the plan.)
2441
+ property :entertainmentBusiness, :label => 'entertainmentBusiness', :comment =>
2442
+ %(A sub property of location. The entertainment business where
2443
+ the action occurred.)
2444
+ property :epidemiology, :label => 'epidemiology', :comment =>
2445
+ %(The characteristics of associated patients, such as age,
2446
+ gender, race etc.)
2447
+ property :episode, :label => 'episode', :comment =>
2448
+ %(An episode of a TV/radio series or season)
2449
+ property :episodeNumber, :label => 'episodeNumber', :comment =>
2450
+ %(Position of the episode within an ordered group of episodes.)
2451
+ property :episodes, :label => 'episodes', :comment =>
2452
+ %(An episode of a TV/radio series or season \(legacy spelling;
2453
+ see singular form, episode\))
2454
+ property :equal, :label => 'equal', :comment =>
2455
+ %(This ordering relation for qualitative values indicates that
2456
+ the subject is equal to the object.)
2457
+ property :estimatesRiskOf, :label => 'estimatesRiskOf', :comment =>
2458
+ %(The condition, complication, or symptom whose risk is being
2459
+ estimated.)
2460
+ property :event, :label => 'event', :comment =>
2461
+ %(Upcoming or past event associated with this place or
2462
+ organization.)
2463
+ property :eventStatus, :label => 'eventStatus', :comment =>
2464
+ %(An eventStatus of an event represents its status; particularly
2465
+ useful when an event is cancelled or rescheduled.)
2466
+ property :events, :label => 'events', :comment =>
2467
+ %(Upcoming or past events associated with this place or
2468
+ organization \(legacy spelling; see singular form, event\).)
2469
+ property :evidenceLevel, :label => 'evidenceLevel', :comment =>
2470
+ %(Strength of evidence of the data used to formulate the
2471
+ guideline \(enumerated\).)
2472
+ property :evidenceOrigin, :label => 'evidenceOrigin', :comment =>
2473
+ %(Source of the data used to formulate the guidance, e.g. RCT,
2474
+ consensus opinion, etc.)
2475
+ property :exercisePlan, :label => 'exercisePlan', :comment =>
2476
+ %(A sub property of instrument. The exercise plan used on this
2477
+ action.)
2478
+ property :exerciseType, :label => 'exerciseType', :comment =>
2479
+ %(Type\(s\) of exercise or activity, such as strength training,
2480
+ flexibility training, aerobics, cardiac rehabilitation, etc.)
2481
+ property :exifData, :label => 'exifData', :comment =>
2482
+ %(exif data for this object.)
2483
+ property :expectedArrivalFrom, :label => 'expectedArrivalFrom', :comment =>
2484
+ %(The earliest date the package may arrive.)
2485
+ property :expectedArrivalUntil, :label => 'expectedArrivalUntil', :comment =>
2486
+ %(The latest date the package may arrive.)
2487
+ property :expectedPrognosis, :label => 'expectedPrognosis', :comment =>
2488
+ %(The likely outcome in either the short term or long term of
2489
+ the medical condition.)
2490
+ property :experienceRequirements, :label => 'experienceRequirements', :comment =>
2491
+ %(Description of skills and experience needed for the position.)
2492
+ property :expertConsiderations, :label => 'expertConsiderations', :comment =>
2493
+ %(Medical expert advice related to the plan.)
2494
+ property :expires, :label => 'expires', :comment =>
2495
+ %(Date the content expires and is no longer useful or available.
2496
+ Useful for videos.)
2497
+ property :familyName, :label => 'familyName', :comment =>
2498
+ %(Family name. In the U.S., the last name of an Person. This can
2499
+ be used along with givenName instead of the Name property.)
2500
+ property :fatContent, :label => 'fatContent', :comment =>
2501
+ %(The number of grams of fat.)
2502
+ property :faxNumber, :label => 'faxNumber', :comment =>
2503
+ %(The fax number.)
2504
+ property :featureList, :label => 'featureList', :comment =>
2505
+ %(Features or modules provided by this application \(and
2506
+ possibly required by other applications\).)
2507
+ property :fiberContent, :label => 'fiberContent', :comment =>
2508
+ %(The number of grams of fiber.)
2509
+ property :fileFormat, :label => 'fileFormat', :comment =>
2510
+ %(MIME format of the binary \(e.g. application/zip\).)
2511
+ property :fileSize, :label => 'fileSize', :comment =>
2512
+ %(Size of the application / package \(e.g. 18MB\). In the
2513
+ absence of a unit \(MB, KB etc.\), KB will be assumed.)
2514
+ property :followee, :label => 'followee', :comment =>
2515
+ %(A sub property of object. The person or organization being
2516
+ followed.)
2517
+ property :follows, :label => 'follows', :comment =>
2518
+ %(The most generic uni-directional social relation.)
2519
+ property :followup, :label => 'followup', :comment =>
2520
+ %(Typical or recommended followup care after the procedure is
2521
+ performed.)
2522
+ property :foodEstablishment, :label => 'foodEstablishment', :comment =>
2523
+ %(A sub property of location. The specific food establishment
2524
+ where the action occurreed.)
2525
+ property :foodEvent, :label => 'foodEvent', :comment =>
2526
+ %(A sub property of location. The specific food event where the
2527
+ action occurred.)
2528
+ property :foodWarning, :label => 'foodWarning', :comment =>
2529
+ %(Any precaution, guidance, contraindication, etc. related to
2530
+ consumption of specific foods while taking this drug.)
2531
+ property :founder, :label => 'founder', :comment =>
2532
+ %(A person who founded this organization.)
2533
+ property :founders, :label => 'founders', :comment =>
2534
+ %(A person who founded this organization \(legacy spelling; see
2535
+ singular form, founder\).)
2536
+ property :foundingDate, :label => 'foundingDate', :comment =>
2537
+ %(The date that this organization was founded.)
2538
+ property :free, :label => 'free', :comment =>
2539
+ %(A flag to signal that the publication is accessible for free.)
2540
+ property :frequency, :label => 'frequency', :comment =>
2541
+ %(How often the dose is taken, e.g. 'daily'.)
2542
+ property :fromLocation, :label => 'fromLocation', :comment =>
2543
+ %(A sub property of location. The original location of the
2544
+ object or the agent before the action.)
2545
+ property :function, :label => 'function', :comment =>
2546
+ %(Function of the anatomical structure.)
2547
+ property :functionalClass, :label => 'functionalClass', :comment =>
2548
+ %(The degree of mobility the joint allows.)
2549
+ property :gender, :label => 'gender', :comment =>
2550
+ %(Gender of the person.)
2551
+ property :genre, :label => 'genre', :comment =>
2552
+ %(Genre of the creative work)
2553
+ property :geo, :label => 'geo', :comment =>
2554
+ %(The geo coordinates of the place.)
2555
+ property :geographicArea, :label => 'geographicArea', :comment =>
2556
+ %(The geographic area associated with the audience.)
2557
+ property :givenName, :label => 'givenName', :comment =>
2558
+ %(Given name. In the U.S., the first name of a Person. This can
2559
+ be used along with familyName instead of the Name property.)
2560
+ property :globalLocationNumber, :label => 'globalLocationNumber', :comment =>
2561
+ %(The Global Location Number \(GLN, sometimes also referred to
2562
+ as International Location Number or ILN\) of the respective
2563
+ organization, person, or place. The GLN is a 13-digit number
2564
+ used to identify parties and physical locations.)
2565
+ property :greater, :label => 'greater', :comment =>
2566
+ %(This ordering relation for qualitative values indicates that
2567
+ the subject is greater than the object.)
2568
+ property :greaterOrEqual, :label => 'greaterOrEqual', :comment =>
2569
+ %(This ordering relation for qualitative values indicates that
2570
+ the subject is greater than or equal to the object.)
2571
+ property :gtin13, :label => 'gtin13', :comment =>
2572
+ %(The GTIN-13 code of the product, or the product to which the
2573
+ offer refers. This is equivalent to 13-digit ISBN codes and
2574
+ EAN UCC-13. Former 12-digit UPC codes can be converted into a
2575
+ GTIN-13 code by simply adding a preceeding zero.)
2576
+ property :gtin14, :label => 'gtin14', :comment =>
2577
+ %(The GTIN-14 code of the product, or the product to which the
2578
+ offer refers.)
2579
+ property :gtin8, :label => 'gtin8', :comment =>
2580
+ %(The GTIN-8 code of the product, or the product to which the
2581
+ offer refers. This code is also known as EAN/UCC-8 or 8-digit
2582
+ EAN.)
2583
+ property :guideline, :label => 'guideline', :comment =>
2584
+ %(A medical guideline related to this entity.)
2585
+ property :guidelineDate, :label => 'guidelineDate', :comment =>
2586
+ %(Date on which this guideline's recommendation was made.)
2587
+ property :guidelineSubject, :label => 'guidelineSubject', :comment =>
2588
+ %(The medical conditions, treatments, etc. that are the subject
2589
+ of the guideline.)
2590
+ property :hasDeliveryMethod, :label => 'hasDeliveryMethod', :comment =>
2591
+ %(Method used for delivery or shipping.)
2592
+ property :hasPOS, :label => 'hasPOS', :comment =>
2593
+ %(Points-of-Sales operated by the organization or person.)
2594
+ property :headline, :label => 'headline', :comment =>
2595
+ %(Headline of the article)
2596
+ property :healthCondition, :label => 'healthCondition', :comment =>
2597
+ %(Expectations for health conditions of target audience)
2598
+ property :height, :label => 'height', :comment =>
2599
+ %(The height of the item.)
2600
+ property :highPrice, :label => 'highPrice', :comment =>
2601
+ %(The highest price of all offers available.)
2602
+ property :hiringOrganization, :label => 'hiringOrganization', :comment =>
2603
+ %(Organization offering the job position.)
2604
+ property :homeLocation, :label => 'homeLocation', :comment =>
2605
+ %(A contact location for a person's residence.)
2606
+ property :honorificPrefix, :label => 'honorificPrefix', :comment =>
2607
+ %(An honorific prefix preceding a Person's name such as
2608
+ Dr/Mrs/Mr.)
2609
+ property :honorificSuffix, :label => 'honorificSuffix', :comment =>
2610
+ %(An honorific suffix preceding a Person's name such as M.D.
2611
+ /PhD/MSCSW.)
2612
+ property :hospitalAffiliation, :label => 'hospitalAffiliation', :comment =>
2613
+ %(A hospital with which the physician or office is affiliated.)
2614
+ property :hoursAvailable, :label => 'hoursAvailable', :comment =>
2615
+ %(The hours during which this contact point is available.)
2616
+ property :howPerformed, :label => 'howPerformed', :comment =>
2617
+ %(How the procedure is performed.)
2618
+ property :identifyingExam, :label => 'identifyingExam', :comment =>
2619
+ %(A physical examination that can identify this sign.)
2620
+ property :identifyingTest, :label => 'identifyingTest', :comment =>
2621
+ %(A diagnostic test that can identify this sign.)
2622
+ property :illustrator, :label => 'illustrator', :comment =>
2623
+ %(The illustrator of the book.)
2624
+ property :image, :label => 'image', :comment =>
2625
+ %(URL of an image of the item.)
2626
+ property :imagingTechnique, :label => 'imagingTechnique', :comment =>
2627
+ %(Imaging technique used.)
2628
+ property :inAlbum, :label => 'inAlbum', :comment =>
2629
+ %(The album to which this recording belongs.)
2630
+ property :inLanguage, :label => 'inLanguage', :comment =>
2631
+ %(The language of the content. please use one of the language
2632
+ codes from the <a href='http://tools.ietf.org/html/bcp47'>IETF
2633
+ BCP 47 standard.</a>)
2634
+ property :inPlaylist, :label => 'inPlaylist', :comment =>
2635
+ %(The playlist to which this recording belongs.)
2636
+ property :incentives, :label => 'incentives', :comment =>
2637
+ %(Description of bonus and commission compensation aspects of
2638
+ the job.)
2639
+ property :includedRiskFactor, :label => 'includedRiskFactor', :comment =>
2640
+ %(A modifiable or non-modifiable risk factor included in the
2641
+ calculation, e.g. age, coexisting condition.)
2642
+ property :includesObject, :label => 'includesObject', :comment =>
2643
+ %(This links to a node or nodes indicating the exact quantity of
2644
+ the products included in the offer.)
2645
+ property :increasesRiskOf, :label => 'increasesRiskOf', :comment =>
2646
+ %(The condition, complication, etc. influenced by this factor.)
2647
+ property :indication, :label => 'indication', :comment =>
2648
+ %(A factor that indicates use of this therapy for treatment
2649
+ and/or prevention of a condition, symptom, etc. For therapies
2650
+ such as drugs, indications can include both
2651
+ officially-approved indications as well as off-label uses.
2652
+ These can be distinguished by using the ApprovedIndication
2653
+ subtype of MedicalIndication.)
2654
+ property :industry, :label => 'industry', :comment =>
2655
+ %(The industry associated with the job position.)
2656
+ property :infectiousAgent, :label => 'infectiousAgent', :comment =>
2657
+ %(The actual infectious agent, such as a specific bacterium.)
2658
+ property :infectiousAgentClass, :label => 'infectiousAgentClass', :comment =>
2659
+ %(The class of infectious agent \(bacteria, prion, etc.\) that
2660
+ causes the disease.)
2661
+ property :ingredients, :label => 'ingredients', :comment =>
2662
+ %(An ingredient used in the recipe.)
2663
+ property :insertion, :label => 'insertion', :comment =>
2664
+ %(The place of attachment of a muscle, or what the muscle moves.)
2665
+ property :installUrl, :label => 'installUrl', :comment =>
2666
+ %(URL at which the app may be installed, if different from the
2667
+ URL of the item.)
2668
+ property :instrument, :label => 'instrument', :comment =>
2669
+ %(The object that helped the agent perform the action. e.g. John
2670
+ wrote a book with *a pen*.)
2671
+ property :intensity, :label => 'intensity', :comment =>
2672
+ %(Quantitative measure gauging the degree of force involved in
2673
+ the exercise, for example, heartbeats per minute. May include
2674
+ the velocity of the movement.)
2675
+ property :interactingDrug, :label => 'interactingDrug', :comment =>
2676
+ %(Another drug that is known to interact with this drug in a way
2677
+ that impacts the effect of this drug or causes a risk to the
2678
+ patient. Note: disease interactions are typically captured as
2679
+ contraindications.)
2680
+ property :interactionCount, :label => 'interactionCount', :comment =>
2681
+ %(A count of a specific user interactions with this
2682
+ item&#x2014;for example, <code>20 UserLikes</code>, <code>5
2683
+ UserComments</code>, or <code>300 UserDownloads</code>. The
2684
+ user interaction type should be one of the sub types of <a
2685
+ href='UserInteraction'>UserInteraction</a>.)
2686
+ property :interactivityType, :label => 'interactivityType', :comment =>
2687
+ %(The predominant mode of learning supported by the learning
2688
+ resource. Acceptable values are 'active', 'expositive', or
2689
+ 'mixed'.)
2690
+ property :inventoryLevel, :label => 'inventoryLevel', :comment =>
2691
+ %(The current approximate inventory level for the item or items.)
2692
+ property :isAccessoryOrSparePartFor, :label => 'isAccessoryOrSparePartFor', :comment =>
2693
+ %(A pointer to another product \(or multiple products\) for
2694
+ which this product is an accessory or spare part.)
2695
+ property :isAvailableGenerically, :label => 'isAvailableGenerically', :comment =>
2696
+ %(True if the drug is available in a generic form \(regardless
2697
+ of name\).)
2698
+ property :isBasedOnUrl, :label => 'isBasedOnUrl', :comment =>
2699
+ %(A resource that was used in the creation of this resource.
2700
+ This term can be repeated for multiple sources. For example,
2701
+ http://example.com/great-multiplication-intro.html)
2702
+ property :isConsumableFor, :label => 'isConsumableFor', :comment =>
2703
+ %(A pointer to another product \(or multiple products\) for
2704
+ which this product is a consumable.)
2705
+ property :isFamilyFriendly, :label => 'isFamilyFriendly', :comment =>
2706
+ %(Indicates whether this content is family friendly.)
2707
+ property :isGift, :label => 'isGift', :comment =>
2708
+ %(Was the offer accepted as a gift for someone other than the
2709
+ buyer.)
2710
+ property :isPartOf, :label => 'isPartOf', :comment =>
2711
+ %(Indicates the collection or gallery to which the item belongs.)
2712
+ property :isProprietary, :label => 'isProprietary', :comment =>
2713
+ %(True if this item's name is a proprietary/brand name \(vs.
2714
+ generic name\).)
2715
+ property :isRelatedTo, :label => 'isRelatedTo', :comment =>
2716
+ %(A pointer to another, somehow related product \(or multiple
2717
+ products\).)
2718
+ property :isSimilarTo, :label => 'isSimilarTo', :comment =>
2719
+ %(A pointer to another, functionally similar product \(or
2720
+ multiple products\).)
2721
+ property :isVariantOf, :label => 'isVariantOf', :comment =>
2722
+ %(A pointer to a base product from which this product is a
2723
+ variant. It is safe to infer that the variant inherits all
2724
+ product features from the base model, unless defined locally.
2725
+ This is not transitive.)
2726
+ property :isbn, :label => 'isbn', :comment =>
2727
+ %(The ISBN of the book.)
2728
+ property :isicV4, :label => 'isicV4', :comment =>
2729
+ %(The International Standard of Industrial Classification of All
2730
+ Economic Activities \(ISIC\), Revision 4 code for a particular
2731
+ organization, business person, or place.)
2732
+ property :issuedBy, :label => 'issuedBy', :comment =>
2733
+ %(The organization issuing the permit.)
2734
+ property :issuedThrough, :label => 'issuedThrough', :comment =>
2735
+ %(The service through with the permit was granted.)
2736
+ property :itemCondition, :label => 'itemCondition', :comment =>
2737
+ %(A predefined value from OfferItemCondition or a textual
2738
+ description of the condition of the product or service, or the
2739
+ products or services included in the offer.)
2740
+ property :itemListElement, :label => 'itemListElement', :comment =>
2741
+ %(A single list item.)
2742
+ property :itemListOrder, :label => 'itemListOrder', :comment =>
2743
+ %(Type of ordering \(e.g. Ascending, Descending, Unordered\).)
2744
+ property :itemOffered, :label => 'itemOffered', :comment =>
2745
+ %(The item being sold.)
2746
+ property :itemReviewed, :label => 'itemReviewed', :comment =>
2747
+ %(The item that is being reviewed/rated.)
2748
+ property :itemShipped, :label => 'itemShipped', :comment =>
2749
+ %(Item\(s\) being shipped.)
2750
+ property :jobLocation, :label => 'jobLocation', :comment =>
2751
+ %(A \(typically single\) geographic location associated with the
2752
+ job position.)
2753
+ property :jobTitle, :label => 'jobTitle', :comment =>
2754
+ %(The job title of the person \(for example, Financial
2755
+ Manager\).)
2756
+ property :keywords, :label => 'keywords', :comment =>
2757
+ %(The keywords/tags used to describe this content.)
2758
+ property :knows, :label => 'knows', :comment =>
2759
+ %(The most generic bi-directional social/work relation.)
2760
+ property :labelDetails, :label => 'labelDetails', :comment =>
2761
+ %(Link to the drug's label details.)
2762
+ property :landlord, :label => 'landlord', :comment =>
2763
+ %(A sub property of participant. The owner of the real estate
2764
+ property. Sub property of destination or participant?)
2765
+ property :language, :label => 'language', :comment =>
2766
+ %(A sub property of instrument. The languaged used on this
2767
+ action.)
2768
+ property :lastReviewed, :label => 'lastReviewed', :comment =>
2769
+ %(Date on which the content on this web page was last reviewed
2770
+ for accuracy and/or completeness.)
2771
+ property :latitude, :label => 'latitude', :comment =>
2772
+ %(The latitude of a location. For example <code>37.42242</code>.)
2773
+ property :learningResourceType, :label => 'learningResourceType', :comment =>
2774
+ %(The predominant type or kind characterizing the learning
2775
+ resource. For example, 'presentation', 'handout'.)
2776
+ property :legalName, :label => 'legalName', :comment =>
2777
+ %(The official name of the organization, e.g. the registered
2778
+ company name.)
2779
+ property :legalStatus, :label => 'legalStatus', :comment =>
2780
+ %(The drug or supplement's legal status, including any
2781
+ controlled substance schedules that apply.)
2782
+ property :lender, :label => 'lender', :comment =>
2783
+ %(A sub property of participant. The person that lends the
2784
+ object being borrowed.)
2785
+ property :lesser, :label => 'lesser', :comment =>
2786
+ %(This ordering relation for qualitative values indicates that
2787
+ the subject is lesser than the object.)
2788
+ property :lesserOrEqual, :label => 'lesserOrEqual', :comment =>
2789
+ %(This ordering relation for qualitative values indicates that
2790
+ the subject is lesser than or equal to the object.)
2791
+ property :line, :label => 'line', :comment =>
2792
+ %(A line is a point-to-point path consisting of two or more
2793
+ points. A line is expressed as a series of two or more point
2794
+ objects separated by space.)
2795
+ property :location, :label => 'location', :comment =>
2796
+ %(The location of the event, organization or action.)
2797
+ property :logo, :label => 'logo', :comment =>
2798
+ %(A logo associated with an organization.)
2799
+ property :longitude, :label => 'longitude', :comment =>
2800
+ %(The longitude of a location. For example
2801
+ <code>-122.08585</code>.)
2802
+ property :loser, :label => 'loser', :comment =>
2803
+ %(A sub property of participant. The loser of the action.)
2804
+ property :lowPrice, :label => 'lowPrice', :comment =>
2805
+ %(The lowest price of all offers available.)
2806
+ property :mainContentOfPage, :label => 'mainContentOfPage', :comment =>
2807
+ %(Indicates if this web page element is the main subject of the
2808
+ page.)
2809
+ property :makesOffer, :label => 'makesOffer', :comment =>
2810
+ %(A pointer to products or services offered by the organization
2811
+ or person.)
2812
+ property :manufacturer, :label => 'manufacturer', :comment =>
2813
+ %(The manufacturer of the product.)
2814
+ property :map, :label => 'map', :comment =>
2815
+ %(A URL to a map of the place.)
2816
+ property :maps, :label => 'maps', :comment =>
2817
+ %(A URL to a map of the place \(legacy spelling; see singular
2818
+ form, map\).)
2819
+ property :maxPrice, :label => 'maxPrice', :comment =>
2820
+ %(The highest price if the price is a range.)
2821
+ property :maxValue, :label => 'maxValue', :comment =>
2822
+ %(The upper of the product characteristic.)
2823
+ property :maximumIntake, :label => 'maximumIntake', :comment =>
2824
+ %(Recommended intake of this supplement for a given population
2825
+ as defined by a specific recommending authority.)
2826
+ property :mechanismOfAction, :label => 'mechanismOfAction', :comment =>
2827
+ %(The specific biochemical interaction through which this drug
2828
+ or supplement produces its pharmacological effect.)
2829
+ property :medicalSpecialty, :label => 'medicalSpecialty', :comment =>
2830
+ %(A medical specialty of the provider.)
2831
+ property :medicineSystem, :label => 'medicineSystem', :comment =>
2832
+ %(The system of medicine that includes this MedicalEntity, for
2833
+ example 'evidence-based', 'homeopathic', 'chiropractic', etc.)
2834
+ property :member, :label => 'member', :comment =>
2835
+ %(A member of this organization.)
2836
+ property :memberOf, :label => 'memberOf', :comment =>
2837
+ %(An organization to which the person belongs.)
2838
+ property :members, :label => 'members', :comment =>
2839
+ %(A member of this organization \(legacy spelling; see singular
2840
+ form, member\).)
2841
+ property :memoryRequirements, :label => 'memoryRequirements', :comment =>
2842
+ %(Minimum memory requirements.)
2843
+ property :mentions, :label => 'mentions', :comment =>
2844
+ %(Indicates that the CreativeWork contains a reference to, but
2845
+ is not necessarily about a concept.)
2846
+ property :menu, :label => 'menu', :comment =>
2847
+ %(Either the actual menu or a URL of the menu.)
2848
+ property :merchant, :label => 'merchant', :comment =>
2849
+ %(The party taking the order \(e.g. Amazon.com is a merchant for
2850
+ many sellers\).)
2851
+ property :minPrice, :label => 'minPrice', :comment =>
2852
+ %(The lowest price if the price is a range.)
2853
+ property :minValue, :label => 'minValue', :comment =>
2854
+ %(The lower value of the product characteristic.)
2855
+ property :model, :label => 'model', :comment =>
2856
+ %(The model of the product. Use with the URL of a ProductModel
2857
+ or a textual representation of the model identifier. The URL
2858
+ of the ProductModel can be from an external source. It is
2859
+ recommended to additionally provide strong product identifiers
2860
+ via the gtin8/gtin13/gtin14 and mpn properties.)
2861
+ property :mpn, :label => 'mpn', :comment =>
2862
+ %(The Manufacturer Part Number \(MPN\) of the product, or the
2863
+ product to which the offer refers.)
2864
+ property :musicBy, :label => 'musicBy', :comment =>
2865
+ %(The composer of the movie or TV/radio soundtrack.)
2866
+ property :musicGroupMember, :label => 'musicGroupMember', :comment =>
2867
+ %(A member of the music group&#x2014;for example, John, Paul,
2868
+ George, or Ringo.)
2869
+ property :naics, :label => 'naics', :comment =>
2870
+ %(The North American Industry Classification System \(NAICS\)
2871
+ code for a particular organization or business person.)
2872
+ property :name, :label => 'name', :comment =>
2873
+ %(The name of the item.)
2874
+ property :nationality, :label => 'nationality', :comment =>
2875
+ %(Nationality of the person.)
2876
+ property :naturalProgression, :label => 'naturalProgression', :comment =>
2877
+ %(The expected progression of the condition if it is not treated
2878
+ and allowed to progress naturally.)
2879
+ property :nerve, :label => 'nerve', :comment =>
2880
+ %(The underlying innervation associated with the muscle.)
2881
+ property :nerveMotor, :label => 'nerveMotor', :comment =>
2882
+ %(The neurological pathway extension that involves muscle
2883
+ control.)
2884
+ property :nonEqual, :label => 'nonEqual', :comment =>
2885
+ %(This ordering relation for qualitative values indicates that
2886
+ the subject is not equal to the object.)
2887
+ property :nonProprietaryName, :label => 'nonProprietaryName', :comment =>
2888
+ %(The generic name of this drug or supplement.)
2889
+ property :normalRange, :label => 'normalRange', :comment =>
2890
+ %(Range of acceptable values for a typical patient, when
2891
+ applicable.)
2892
+ property :numTracks, :label => 'numTracks', :comment =>
2893
+ %(The number of tracks in this album or playlist.)
2894
+ property :numberOfEpisodes, :label => 'numberOfEpisodes', :comment =>
2895
+ %(The number of episodes in this season or series.)
2896
+ property :numberOfPages, :label => 'numberOfPages', :comment =>
2897
+ %(The number of pages in the book.)
2898
+ property :numberOfSeasons, :label => 'numberOfSeasons', :comment =>
2899
+ %(The number of seasons in this series.)
2900
+ property :numberofEmployees, :label => 'numberofEmployees', :comment =>
2901
+ %(The size of business by number of employees.)
2902
+ property :nutrition, :label => 'nutrition', :comment =>
2903
+ %(Nutrition information about the recipe.)
2904
+ property :object, :label => 'object', :comment =>
2905
+ %(The object upon the action is carried out, whose state is kept
2906
+ intact or changed. Also known as the semantic roles patient,
2907
+ affected or undergoer \(which change their state\) or theme
2908
+ \(which doesn't\). e.g. John read *a book*.)
2909
+ property :occupationalCategory, :label => 'occupationalCategory', :comment =>
2910
+ %(Category or categories describing the job. Use BLS O*NET-SOC
2911
+ taxonomy: http://www.onetcenter.org/taxonomy.html. Ideally
2912
+ includes textual label and formal code, with the property
2913
+ repeated for each applicable value.)
2914
+ property :offerCount, :label => 'offerCount', :comment =>
2915
+ %(The number of offers for the product.)
2916
+ property :offers, :label => 'offers', :comment =>
2917
+ %(An offer to sell this item&#x2014;for example, an offer to
2918
+ sell a product, the DVD of a movie, or tickets to an event.)
2919
+ property :openingHours, :label => 'openingHours', :comment =>
2920
+ %(The opening hours for a business. Opening hours can be
2921
+ specified as a weekly time range, starting with days, then
2922
+ times per day. Multiple days can be listed with commas ','
2923
+ separating each day. Day or time ranges are specified using a
2924
+ hyphen '-'.<br />- Days are specified using the following
2925
+ two-letter combinations: <code>Mo</code>, <code>Tu</code>,
2926
+ <code>We</code>, <code>Th</code>, <code>Fr</code>,
2927
+ <code>Sa</code>, <code>Su</code>.<br />- Times are specified
2928
+ using 24:00 time. For example, 3pm is specified as
2929
+ <code>15:00</code>. <br />- Here is an example: <code>&lt;time
2930
+ itemprop=&quot;openingHours&quot; datetime=&quot;Tu,Th
2931
+ 16:00-20:00&quot;&gt;Tuesdays and Thursdays
2932
+ 4-8pm&lt;/time&gt;</code>. <br />- If a business is open 7
2933
+ days a week, then it can be specified as <code>&lt;time
2934
+ itemprop=&quot;openingHours&quot;
2935
+ datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all
2936
+ day&lt;/time&gt;</code>.)
2937
+ property :openingHoursSpecification, :label => 'openingHoursSpecification', :comment =>
2938
+ %(The opening hours of a certain place.)
2939
+ property :opens, :label => 'opens', :comment =>
2940
+ %(The opening hour of the place or service on the given day\(s\)
2941
+ of the week.)
2942
+ property :operatingSystem, :label => 'operatingSystem', :comment =>
2943
+ %(Operating systems supported \(Windows 7, OSX 10.6, Android
2944
+ 1.6\).)
2945
+ property :oponent, :label => 'oponent', :comment =>
2946
+ %(A sub property of participant. The oponent on this action.)
2947
+ property :option, :label => 'option', :comment =>
2948
+ %(A sub property of object. The options subject to this action.)
2949
+ property :orderDate, :label => 'orderDate', :comment =>
2950
+ %(Date order was placed.)
2951
+ property :orderNumber, :label => 'orderNumber', :comment =>
2952
+ %(The identifier of the transaction.)
2953
+ property :orderStatus, :label => 'orderStatus', :comment =>
2954
+ %(The current status of the order.)
2955
+ property :orderedItem, :label => 'orderedItem', :comment =>
2956
+ %(The item ordered.)
2957
+ property :origin, :label => 'origin', :comment =>
2958
+ %(The place or point where a muscle arises.)
2959
+ property :originAddress, :label => 'originAddress', :comment =>
2960
+ %(Shipper's address.)
2961
+ property :originatesFrom, :label => 'originatesFrom', :comment =>
2962
+ %(The vasculature the lymphatic structure originates, or
2963
+ afferents, from.)
2964
+ property :outcome, :label => 'outcome', :comment =>
2965
+ %(Expected or actual outcomes of the study.)
2966
+ property :overdosage, :label => 'overdosage', :comment =>
2967
+ %(Any information related to overdose on a drug, including signs
2968
+ or symptoms, treatments, contact information for emergency
2969
+ response.)
2970
+ property :overview, :label => 'overview', :comment =>
2971
+ %(Descriptive information establishing the overarching
2972
+ theory/philosophy of the plan. May include the rationale for
2973
+ the name, the population where the plan first came to
2974
+ prominence, etc.)
2975
+ property :ownedFrom, :label => 'ownedFrom', :comment =>
2976
+ %(The date and time of obtaining the product.)
2977
+ property :ownedThrough, :label => 'ownedThrough', :comment =>
2978
+ %(The date and time of giving up ownership on the product.)
2979
+ property :owns, :label => 'owns', :comment =>
2980
+ %(Products owned by the organization or person.)
2981
+ property :parent, :label => 'parent', :comment =>
2982
+ %(A parent of this person.)
2983
+ property :parentService, :label => 'parentService', :comment =>
2984
+ %(A broadcast service to which the broadcast service may belong
2985
+ to such as regional variations of a national channel.)
2986
+ property :parents, :label => 'parents', :comment =>
2987
+ %(A parents of the person \(legacy spelling; see singular form,
2988
+ parent\).)
2989
+ property :partOfEpisode, :label => 'partOfEpisode', :comment =>
2990
+ %(The episode to which this clip belongs.)
2991
+ property :partOfOrder, :label => 'partOfOrder', :comment =>
2992
+ %(The overall order the items in this delivery were included in.)
2993
+ property :partOfSeason, :label => 'partOfSeason', :comment =>
2994
+ %(The season to which this episode belongs.)
2995
+ property :partOfSeries, :label => 'partOfSeries', :comment =>
2996
+ %(The series to which this episode or season belongs.)
2997
+ property :partOfSystem, :label => 'partOfSystem', :comment =>
2998
+ %(The anatomical or organ system that this structure is part of.)
2999
+ property :partOfTVSeries, :label => 'partOfTVSeries', :comment =>
3000
+ %(The TV series to which this episode or season belongs.
3001
+ \(legacy form; partOfSeries is preferred\))
3002
+ property :participant, :label => 'participant', :comment =>
3003
+ %(Other co-agents that participated in the action indirectly.
3004
+ e.g. John wrote a book with *Steve*.)
3005
+ property :pathophysiology, :label => 'pathophysiology', :comment =>
3006
+ %(Changes in the normal mechanical, physical, and biochemical
3007
+ functions that are associated with this activity or condition.)
3008
+ property :paymentAccepted, :label => 'paymentAccepted', :comment =>
3009
+ %(Cash, credit card, etc.)
3010
+ property :paymentDue, :label => 'paymentDue', :comment =>
3011
+ %(The date that payment is due.)
3012
+ property :paymentMethod, :label => 'paymentMethod', :comment =>
3013
+ %(The name of the credit card or other method of payment for the
3014
+ order.)
3015
+ property :paymentMethodId, :label => 'paymentMethodId', :comment =>
3016
+ %(An identifier for the method of payment used \(e.g. the last 4
3017
+ digits of the credit card\).)
3018
+ property :paymentUrl, :label => 'paymentUrl', :comment =>
3019
+ %(The URL for sending a payment.)
3020
+ property :performer, :label => 'performer', :comment =>
3021
+ %(A performer at the event&#x2014;for example, a presenter,
3022
+ musician, musical group or actor.)
3023
+ property :performerIn, :label => 'performerIn', :comment =>
3024
+ %(Event that this person is a performer or participant in.)
3025
+ property :performers, :label => 'performers', :comment =>
3026
+ %(The main performer or performers of the event&#x2014;for
3027
+ example, a presenter, musician, or actor \(legacy spelling;
3028
+ see singular form, performer\).)
3029
+ property :permissions, :label => 'permissions', :comment =>
3030
+ %(Permission\(s\) required to run the app \(for example, a
3031
+ mobile app may require full internet access or may run only on
3032
+ wifi\).)
3033
+ property :permitAudience, :label => 'permitAudience', :comment =>
3034
+ %(The target audience for this permit.)
3035
+ property :phase, :label => 'phase', :comment =>
3036
+ %(The phase of the trial.)
3037
+ property :photo, :label => 'photo', :comment =>
3038
+ %(A photograph of this place.)
3039
+ property :photos, :label => 'photos', :comment =>
3040
+ %(Photographs of this place \(legacy spelling; see singular
3041
+ form, photo\).)
3042
+ property :physiologicalBenefits, :label => 'physiologicalBenefits', :comment =>
3043
+ %(Specific physiologic benefits associated to the plan.)
3044
+ property :playerType, :label => 'playerType', :comment =>
3045
+ %(Player type required&#x2014;for example, Flash or Silverlight.)
3046
+ property :polygon, :label => 'polygon', :comment =>
3047
+ %(A polygon is the area enclosed by a point-to-point path for
3048
+ which the starting and ending points are the same. A polygon
3049
+ is expressed as a series of four or more spacedelimited points
3050
+ where the first and final points are identical.)
3051
+ property :population, :label => 'population', :comment =>
3052
+ %(Any characteristics of the population used in the study, e.g.
3053
+ 'males under 65'.)
3054
+ property :position, :label => 'position', :comment =>
3055
+ %(Free text to define other than pure numerical ranking of an
3056
+ episode or a season in an ordered list of items \(further
3057
+ formatting restrictions may apply within particular user
3058
+ groups\).)
3059
+ property :possibleComplication, :label => 'possibleComplication', :comment =>
3060
+ %(A possible unexpected and unfavorable evolution of a medical
3061
+ condition. Complications may include worsening of the signs or
3062
+ symptoms of the disease, extension of the condition to other
3063
+ organ systems, etc.)
3064
+ property :possibleTreatment, :label => 'possibleTreatment', :comment =>
3065
+ %(A possible treatment to address this condition, sign or
3066
+ symptom.)
3067
+ property :postOfficeBoxNumber, :label => 'postOfficeBoxNumber', :comment =>
3068
+ %(The post offce box number for PO box addresses.)
3069
+ property :postOp, :label => 'postOp', :comment =>
3070
+ %(A description of the postoperative procedures, care, and/or
3071
+ followups for this device.)
3072
+ property :postalCode, :label => 'postalCode', :comment =>
3073
+ %(The postal code. For example, 94043.)
3074
+ property :preOp, :label => 'preOp', :comment =>
3075
+ %(A description of the workup, testing, and other preparations
3076
+ required before implanting this device.)
3077
+ property :predecessorOf, :label => 'predecessorOf', :comment =>
3078
+ %(A pointer from a previous, often discontinued variant of the
3079
+ product to its newer variant.)
3080
+ property :pregnancyCategory, :label => 'pregnancyCategory', :comment =>
3081
+ %(Pregnancy category of this drug.)
3082
+ property :pregnancyWarning, :label => 'pregnancyWarning', :comment =>
3083
+ %(Any precaution, guidance, contraindication, etc. related to
3084
+ this drug's use during pregnancy.)
3085
+ property :prepTime, :label => 'prepTime', :comment =>
3086
+ %(The length of time it takes to prepare the recipe, in <a
3087
+ href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration
3088
+ format</a>.)
3089
+ property :preparation, :label => 'preparation', :comment =>
3090
+ %(Typical preparation that a patient must undergo before having
3091
+ the procedure performed.)
3092
+ property :prescribingInfo, :label => 'prescribingInfo', :comment =>
3093
+ %(Link to prescribing information for the drug.)
3094
+ property :prescriptionStatus, :label => 'prescriptionStatus', :comment =>
3095
+ %(Indicates whether this drug is available by prescription or
3096
+ over-the-counter.)
3097
+ property :previousStartDate, :label => 'previousStartDate', :comment =>
3098
+ %(Used in conjunction with eventStatus for rescheduled or
3099
+ cancelled events. This property contains the previously
3100
+ scheduled start date. For rescheduled events, the startDate
3101
+ property should be used for the newly scheduled start date. In
3102
+ the \(rare\) case of an event that has been postponed and
3103
+ rescheduled multiple times, this field may be repeated.)
3104
+ property :price, :label => 'price', :comment =>
3105
+ %(The offer price of a product, or of a price component when
3106
+ attached to PriceSpecification and its subtypes.)
3107
+ property :priceCurrency, :label => 'priceCurrency', :comment =>
3108
+ %(The currency \(in 3-letter ISO 4217 format\) of the offer
3109
+ price or a price component, when attached to
3110
+ PriceSpecification and its subtypes.)
3111
+ property :priceRange, :label => 'priceRange', :comment =>
3112
+ %(The price range of the business, for example <code>$$$</code>.)
3113
+ property :priceSpecification, :label => 'priceSpecification', :comment =>
3114
+ %(One or more detailed price specifications, indicating the unit
3115
+ price and delivery or payment charges.)
3116
+ property :priceType, :label => 'priceType', :comment =>
3117
+ %(A short text or acronym indicating multiple price
3118
+ specifications for the same offer, e.g. SRP for the suggested
3119
+ retail price or INVOICE for the invoice price, mostly used in
3120
+ the car industry.)
3121
+ property :priceValidUntil, :label => 'priceValidUntil', :comment =>
3122
+ %(The date after which the price is no longer available.)
3123
+ property :primaryImageOfPage, :label => 'primaryImageOfPage', :comment =>
3124
+ %(Indicates the main image on the page)
3125
+ property :primaryPrevention, :label => 'primaryPrevention', :comment =>
3126
+ %(A preventative therapy used to prevent an initial occurrence
3127
+ of the medical condition, such as vaccination.)
3128
+ property :printColumn, :label => 'printColumn', :comment =>
3129
+ %(The number of the column in which the NewsArticle appears in
3130
+ the print edition.)
3131
+ property :printEdition, :label => 'printEdition', :comment =>
3132
+ %(The edition of the print product in which the NewsArticle
3133
+ appears.)
3134
+ property :printPage, :label => 'printPage', :comment =>
3135
+ %(If this NewsArticle appears in print, this field indicates the
3136
+ name of the page on which the article is found. Please note
3137
+ that this field is intended for the exact page name \(e.g. A5,
3138
+ B18\).)
3139
+ property :printSection, :label => 'printSection', :comment =>
3140
+ %(If this NewsArticle appears in print, this field indicates the
3141
+ print section in which the article appeared.)
3142
+ property :procedure, :label => 'procedure', :comment =>
3143
+ %(A description of the procedure involved in setting up, using,
3144
+ and/or installing the device.)
3145
+ property :procedureType, :label => 'procedureType', :comment =>
3146
+ %(The type of procedure, for example Surgical, Noninvasive, or
3147
+ Percutaneous.)
3148
+ property :processingTime, :label => 'processingTime', :comment =>
3149
+ %(Estimated processing time for the service using this channel.)
3150
+ property :processorRequirements, :label => 'processorRequirements', :comment =>
3151
+ %(Processor architecture required to run the application \(e.g.
3152
+ IA64\).)
3153
+ property :producer, :label => 'producer', :comment =>
3154
+ %(The producer of the movie, tv/radio series, season, or
3155
+ episode, or video.)
3156
+ property :produces, :label => 'produces', :comment =>
3157
+ %(The tangible thing generated by the service, e.g. a passport,
3158
+ permit, etc.)
3159
+ property :productID, :label => 'productID', :comment =>
3160
+ %(The product identifier, such as ISBN. For example:
3161
+ <code>&lt;meta itemprop='productID'
3162
+ content='isbn:123-456-789'/&gt;</code>.)
3163
+ property :productSupported, :label => 'productSupported', :comment =>
3164
+ %(The product or service this support contact point is related
3165
+ to \(such as product support for a particular product line\).
3166
+ This can be a specific product or product line \(e.g.
3167
+ "iPhone"\) or a general category of products or services
3168
+ \(e.g. "smartphones"\).)
3169
+ property :productionCompany, :label => 'productionCompany', :comment =>
3170
+ %(The production company or studio that made the movie, tv/radio
3171
+ series, season, or episode, or media object.)
3172
+ property :proficiencyLevel, :label => 'proficiencyLevel', :comment =>
3173
+ %(Proficiency needed for this content; expected values:
3174
+ 'Beginner', 'Expert'.)
3175
+ property :programmingLanguage, :label => 'programmingLanguage', :comment =>
3176
+ %(The computer programming language.)
3177
+ property :programmingModel, :label => 'programmingModel', :comment =>
3178
+ %(Indicates whether API is managed or unmanaged.)
3179
+ property :proprietaryName, :label => 'proprietaryName', :comment =>
3180
+ %(Proprietary name given to the diet plan, typically by its
3181
+ originator or creator.)
3182
+ property :proteinContent, :label => 'proteinContent', :comment =>
3183
+ %(The number of grams of protein.)
3184
+ property :provider, :label => 'provider', :comment =>
3185
+ %(The organization or agency that is providing the service.)
3186
+ property :providesService, :label => 'providesService', :comment =>
3187
+ %(The service provided by this channel.)
3188
+ property :publication, :label => 'publication', :comment =>
3189
+ %(A publication event associated with the episode, clip or media
3190
+ object.)
3191
+ property :publicationType, :label => 'publicationType', :comment =>
3192
+ %(The type of the medical article, taken from the US NLM MeSH <a
3193
+ href=http://www.nlm.nih.gov/mesh/pubtypes.html>publication
3194
+ type catalog.)
3195
+ property :publishedOn, :label => 'publishedOn', :comment =>
3196
+ %(A broadcast service associated with the publication event)
3197
+ property :publisher, :label => 'publisher', :comment =>
3198
+ %(The publisher of the creative work.)
3199
+ property :publishingPrinciples, :label => 'publishingPrinciples', :comment =>
3200
+ %(Link to page describing the editorial principles of the
3201
+ organization primarily responsible for the creation of the
3202
+ CreativeWork.)
3203
+ property :purpose, :label => 'purpose', :comment =>
3204
+ %(A goal towards an action is taken. Can be concrete or
3205
+ abstract.)
3206
+ property :qualifications, :label => 'qualifications', :comment =>
3207
+ %(Specific qualifications required for this role.)
3208
+ property :query, :label => 'query', :comment =>
3209
+ %(A sub property of instrument. The query used on this action.)
3210
+ property :question, :label => 'question', :comment =>
3211
+ %(A sub property of object. A question.)
3212
+ property :rangeIncludes, :label => 'rangeIncludes', :comment =>
3213
+ %(Relates a property to a class that constitutes \(one of\) the
3214
+ expected type\(s\) for values of the property.)
3215
+ property :ratingCount, :label => 'ratingCount', :comment =>
3216
+ %(The count of total number of ratings.)
3217
+ property :ratingValue, :label => 'ratingValue', :comment =>
3218
+ %(The rating for the content.)
3219
+ property :realEstateAgent, :label => 'realEstateAgent', :comment =>
3220
+ %(A sub property of participant. The real estate agent involved
3221
+ in the action.)
3222
+ property :recipe, :label => 'recipe', :comment =>
3223
+ %(A sub property of instrument. The recipe/instructions used to
3224
+ perform the action.)
3225
+ property :recipeCategory, :label => 'recipeCategory', :comment =>
3226
+ %(The category of the recipe&#x2014;for example, appetizer,
3227
+ entree, etc.)
3228
+ property :recipeCuisine, :label => 'recipeCuisine', :comment =>
3229
+ %(The cuisine of the recipe \(for example, French or Ethopian\).)
3230
+ property :recipeInstructions, :label => 'recipeInstructions', :comment =>
3231
+ %(The steps to make the dish.)
3232
+ property :recipeYield, :label => 'recipeYield', :comment =>
3233
+ %(The quantity produced by the recipe \(for example, number of
3234
+ people served, number of servings, etc\).)
3235
+ property :recipient, :label => 'recipient', :comment =>
3236
+ %(A sub property of participant. The participant who is at the
3237
+ receiving end of the action.)
3238
+ property :recognizingAuthority, :label => 'recognizingAuthority', :comment =>
3239
+ %(If applicable, the organization that officially recognizes
3240
+ this entity as part of its endorsed system of medicine.)
3241
+ property :recommendationStrength, :label => 'recommendationStrength', :comment =>
3242
+ %(Strength of the guideline's recommendation \(e.g. 'class I'\).)
3243
+ property :recommendedIntake, :label => 'recommendedIntake', :comment =>
3244
+ %(Recommended intake of this supplement for a given population
3245
+ as defined by a specific recommending authority.)
3246
+ property :regionDrained, :label => 'regionDrained', :comment =>
3247
+ %(The anatomical or organ system drained by this vessel;
3248
+ generally refers to a specific part of an organ.)
3249
+ property :regionsAllowed, :label => 'regionsAllowed', :comment =>
3250
+ %(The regions where the media is allowed. If not specified, then
3251
+ it's assumed to be allowed everywhere. Specify the countries
3252
+ in <a href='http://en.wikipedia.org/wiki/ISO_3166'>ISO 3166
3253
+ format</a>.)
3254
+ property :relatedAnatomy, :label => 'relatedAnatomy', :comment =>
3255
+ %(Anatomical systems or structures that relate to the
3256
+ superficial anatomy.)
3257
+ property :relatedCondition, :label => 'relatedCondition', :comment =>
3258
+ %(A medical condition associated with this anatomy.)
3259
+ property :relatedDrug, :label => 'relatedDrug', :comment =>
3260
+ %(Any other drug related to this one, for example
3261
+ commonly-prescribed alternatives.)
3262
+ property :relatedLink, :label => 'relatedLink', :comment =>
3263
+ %(A link related to this web page, for example to other related
3264
+ web pages.)
3265
+ property :relatedStructure, :label => 'relatedStructure', :comment =>
3266
+ %(Related anatomical structure\(s\) that are not part of the
3267
+ system but relate or connect to it, such as vascular bundles
3268
+ associated with an organ system.)
3269
+ property :relatedTherapy, :label => 'relatedTherapy', :comment =>
3270
+ %(A medical therapy related to this anatomy.)
3271
+ property :relatedTo, :label => 'relatedTo', :comment =>
3272
+ %(The most generic familial relation.)
3273
+ property :releaseDate, :label => 'releaseDate', :comment =>
3274
+ %(The release date of a product or product model. This can be
3275
+ used to distinguish the exact variant of a product.)
3276
+ property :releaseNotes, :label => 'releaseNotes', :comment =>
3277
+ %(Description of what changed in this version.)
3278
+ property :relevantSpecialty, :label => 'relevantSpecialty', :comment =>
3279
+ %(If applicable, a medical specialty in which this entity is
3280
+ relevant.)
3281
+ property :repetitions, :label => 'repetitions', :comment =>
3282
+ %(Number of times one should repeat the activity.)
3283
+ property :replacee, :label => 'replacee', :comment =>
3284
+ %(A sub property of object. The object that is being replaced.)
3285
+ property :replacer, :label => 'replacer', :comment =>
3286
+ %(A sub property of object. The object that replaces.)
3287
+ property :replyToUrl, :label => 'replyToUrl', :comment =>
3288
+ %(The URL at which a reply may be posted to the specified
3289
+ UserComment.)
3290
+ property :representativeOfPage, :label => 'representativeOfPage', :comment =>
3291
+ %(Indicates whether this image is representative of the content
3292
+ of the page.)
3293
+ property :requiredGender, :label => 'requiredGender', :comment =>
3294
+ %(Audiences defined by a person's gender.)
3295
+ property :requiredMaxAge, :label => 'requiredMaxAge', :comment =>
3296
+ %(Audiences defined by a person's maximum age.)
3297
+ property :requiredMinAge, :label => 'requiredMinAge', :comment =>
3298
+ %(Audiences defined by a person's minimum age.)
3299
+ property :requirements, :label => 'requirements', :comment =>
3300
+ %(Component dependency requirements for application. This
3301
+ includes runtime environments and shared libraries that are
3302
+ not included in the application distribution package, but
3303
+ required to run the application \(Examples: DirectX, Java or
3304
+ .NET runtime\).)
3305
+ property :requiresSubscription, :label => 'requiresSubscription', :comment =>
3306
+ %(Indicates if use of the media require a subscription \(either
3307
+ paid or free\). Allowed values are <code>true</code> or
3308
+ <code>false</code> \(note that an earlier version had 'yes',
3309
+ 'no'\).)
3310
+ property :responsibilities, :label => 'responsibilities', :comment =>
3311
+ %(Responsibilities associated with this role.)
3312
+ property :restPeriods, :label => 'restPeriods', :comment =>
3313
+ %(How often one should break from the activity.)
3314
+ property :result, :label => 'result', :comment =>
3315
+ %(The result produced in the action. e.g. John wrote *a book*.)
3316
+ property :resultReview, :label => 'resultReview', :comment =>
3317
+ %(A sub property of result. The review that resulted in the
3318
+ performing of the action.)
3319
+ property :review, :label => 'review', :comment =>
3320
+ %(A review of the item.)
3321
+ property :reviewBody, :label => 'reviewBody', :comment =>
3322
+ %(The actual body of the review)
3323
+ property :reviewCount, :label => 'reviewCount', :comment =>
3324
+ %(The count of total number of reviews.)
3325
+ property :reviewRating, :label => 'reviewRating', :comment =>
3326
+ %(The rating given in this review. Note that reviews can
3327
+ themselves be rated. The <code>reviewRating</code> applies to
3328
+ rating given by the review. The <code>aggregateRating</code>
3329
+ property applies to the review itself, as a creative work.)
3330
+ property :reviewedBy, :label => 'reviewedBy', :comment =>
3331
+ %(People or organizations that have reviewed the content on this
3332
+ web page for accuracy and/or completeness.)
3333
+ property :reviews, :label => 'reviews', :comment =>
3334
+ %(Review of the item \(legacy spelling; see singular form,
3335
+ review\).)
3336
+ property :riskFactor, :label => 'riskFactor', :comment =>
3337
+ %(A modifiable or non-modifiable factor that increases the risk
3338
+ of a patient contracting this condition, e.g. age, coexisting
3339
+ condition.)
3340
+ property :risks, :label => 'risks', :comment =>
3341
+ %(Specific physiologic risks associated to the plan.)
3342
+ property :runsTo, :label => 'runsTo', :comment =>
3343
+ %(The vasculature the lymphatic structure runs, or efferents,
3344
+ to.)
3345
+ property :runtime, :label => 'runtime', :comment =>
3346
+ %(Runtime platform or script interpreter dependencies \(Example
3347
+ - Java v1, Python2.3, .Net Framework 3.0\))
3348
+ property :safetyConsideration, :label => 'safetyConsideration', :comment =>
3349
+ %(Any potential safety concern associated with the supplement.
3350
+ May include interactions with other drugs and foods,
3351
+ pregnancy, breastfeeding, known adverse reactions, and
3352
+ documented efficacy of the supplement.)
3353
+ property :salaryCurrency, :label => 'salaryCurrency', :comment =>
3354
+ %(The currency \(coded using ISO 4217,
3355
+ http://en.wikipedia.org/wiki/ISO_4217 used for the main salary
3356
+ information in this job posting.)
3357
+ property :sameAs, :label => 'sameAs', :comment =>
3358
+ %(URL of a reference Web page that unambiguously indicates the
3359
+ item's identity. E.g. the URL of the item's Wikipedia page,
3360
+ Freebase page, or official website.)
3361
+ property :sampleType, :label => 'sampleType', :comment =>
3362
+ %(Full \(compile ready\) solution, code snippet, inline code,
3363
+ scripts, template.)
3364
+ property :saturatedFatContent, :label => 'saturatedFatContent', :comment =>
3365
+ %(The number of grams of saturated fat.)
3366
+ property :scheduledTime, :label => 'scheduledTime', :comment =>
3367
+ %(The time the object is scheduled to.)
3368
+ property :screenshot, :label => 'screenshot', :comment =>
3369
+ %(A link to a screenshot image of the app.)
3370
+ property :season, :label => 'season', :comment =>
3371
+ %(A season in a tv/radio series.)
3372
+ property :seasonNumber, :label => 'seasonNumber', :comment =>
3373
+ %(Position of the season within an ordered group of seasons.)
3374
+ property :seasons, :label => 'seasons', :comment =>
3375
+ %(A season in a tv/radio series. \(legacy spelling; see singular
3376
+ form, season\))
3377
+ property :secondaryPrevention, :label => 'secondaryPrevention', :comment =>
3378
+ %(A preventative therapy used to prevent reoccurrence of the
3379
+ medical condition after an initial episode of the condition.)
3380
+ property :seeks, :label => 'seeks', :comment =>
3381
+ %(A pointer to products or services sought by the organization
3382
+ or person \(demand\).)
3383
+ property :seller, :label => 'seller', :comment =>
3384
+ %(The seller.)
3385
+ property :sender, :label => 'sender', :comment =>
3386
+ %(A sub property of participant. The participant who is at the
3387
+ sending end of the action.)
3388
+ property :sensoryUnit, :label => 'sensoryUnit', :comment =>
3389
+ %(The neurological pathway extension that inputs and sends
3390
+ information to the brain or spinal cord.)
3391
+ property :serialNumber, :label => 'serialNumber', :comment =>
3392
+ %(The serial number or any alphanumeric identifier of a
3393
+ particular product. When attached to an offer, it is a
3394
+ shortcut for the serial number of the product included in the
3395
+ offer.)
3396
+ property :seriousAdverseOutcome, :label => 'seriousAdverseOutcome', :comment =>
3397
+ %(A possible serious complication and/or serious side effect of
3398
+ this therapy. Serious adverse outcomes include those that are
3399
+ life-threatening; result in death, disability, or permanent
3400
+ damage; require hospitalization or prolong existing
3401
+ hospitalization; cause congenital anomalies or birth defects;
3402
+ or jeopardize the patient and may require medical or surgical
3403
+ intervention to prevent one of the outcomes in this
3404
+ definition.)
3405
+ property :servesCuisine, :label => 'servesCuisine', :comment =>
3406
+ %(The cuisine of the restaurant.)
3407
+ property :serviceArea, :label => 'serviceArea', :comment =>
3408
+ %(The geographic area where the service is provided.)
3409
+ property :serviceAudience, :label => 'serviceAudience', :comment =>
3410
+ %(The audience eligible for this service.)
3411
+ property :serviceLocation, :label => 'serviceLocation', :comment =>
3412
+ %(The location \(e.g. civic structure, local business, etc.\)
3413
+ where a person can go to access the service.)
3414
+ property :serviceOperator, :label => 'serviceOperator', :comment =>
3415
+ %(The operating organization, if different from the provider.
3416
+ This enables the representation of services that are provided
3417
+ by an organization, but operated by another organization like
3418
+ a subcontractor.)
3419
+ property :servicePhone, :label => 'servicePhone', :comment =>
3420
+ %(The phone number to use to access the service.)
3421
+ property :servicePostalAddress, :label => 'servicePostalAddress', :comment =>
3422
+ %(The address for accessing the service by mail.)
3423
+ property :serviceSmsNumber, :label => 'serviceSmsNumber', :comment =>
3424
+ %(The number to access the service by text message.)
3425
+ property :serviceType, :label => 'serviceType', :comment =>
3426
+ %(The type of service being offered, e.g. veterans' benefits,
3427
+ emergency relief, etc.)
3428
+ property :serviceUrl, :label => 'serviceUrl', :comment =>
3429
+ %(The website to access the service.)
3430
+ property :servingSize, :label => 'servingSize', :comment =>
3431
+ %(The serving size, in terms of the number of volume or mass)
3432
+ property :sibling, :label => 'sibling', :comment =>
3433
+ %(A sibling of the person.)
3434
+ property :siblings, :label => 'siblings', :comment =>
3435
+ %(A sibling of the person \(legacy spelling; see singular form,
3436
+ sibling\).)
3437
+ property :signDetected, :label => 'signDetected', :comment =>
3438
+ %(A sign detected by the test.)
3439
+ property :signOrSymptom, :label => 'signOrSymptom', :comment =>
3440
+ %(A sign or symptom of this condition. Signs are objective or
3441
+ physically observable manifestations of the medical condition
3442
+ while symptoms are the subjective experienceof the medical
3443
+ condition.)
3444
+ property :significance, :label => 'significance', :comment =>
3445
+ %(The significance associated with the superficial anatomy; as
3446
+ an example, how characteristics of the superficial anatomy can
3447
+ suggest underlying medical conditions or courses of treatment.)
3448
+ property :significantLink, :label => 'significantLink', :comment =>
3449
+ %(One of the more significant URLs on the page. Typically, these
3450
+ are the non-navigation links that are clicked on the most.)
3451
+ property :significantLinks, :label => 'significantLinks', :comment =>
3452
+ %(The most significant URLs on the page. Typically, these are
3453
+ the non-navigation links that are clicked on the most \(legacy
3454
+ spelling; see singular form, significantLink\).)
3455
+ property :skills, :label => 'skills', :comment =>
3456
+ %(Skills required to fulfill this role.)
3457
+ property :sku, :label => 'sku', :comment =>
3458
+ %(The Stock Keeping Unit \(SKU\), i.e. a merchant-specific
3459
+ identifier for a product or service, or the product to which
3460
+ the offer refers.)
3461
+ property :sodiumContent, :label => 'sodiumContent', :comment =>
3462
+ %(The number of milligrams of sodium.)
3463
+ property :softwareVersion, :label => 'softwareVersion', :comment =>
3464
+ %(Version of the software instance.)
3465
+ property :source, :label => 'source', :comment =>
3466
+ %(The anatomical or organ system that the artery originates
3467
+ from.)
3468
+ property :sourceOrganization, :label => 'sourceOrganization', :comment =>
3469
+ %(The Organization on whose behalf the creator was working.)
3470
+ property :sourcedFrom, :label => 'sourcedFrom', :comment =>
3471
+ %(The neurological pathway that originates the neurons.)
3472
+ property :spatial, :label => 'spatial', :comment =>
3473
+ %(The range of spatial applicability of a dataset, e.g. for a
3474
+ dataset of New York weather, the state of New York.)
3475
+ property :specialCommitments, :label => 'specialCommitments', :comment =>
3476
+ %(Any special commitments associated with this job posting.
3477
+ Valid entries include VeteranCommit, MilitarySpouseCommit,
3478
+ etc.)
3479
+ property :specialty, :label => 'specialty', :comment =>
3480
+ %(One of the domain specialities to which this web page's
3481
+ content applies.)
3482
+ property :sponsor, :label => 'sponsor', :comment =>
3483
+ %(Sponsor of the study.)
3484
+ property :sportsActivityLocation, :label => 'sportsActivityLocation', :comment =>
3485
+ %(A sub property of location. The sports activity location where
3486
+ this action occurred.)
3487
+ property :sportsEvent, :label => 'sportsEvent', :comment =>
3488
+ %(A sub property of location. The sports event where this action
3489
+ occurred.)
3490
+ property :sportsTeam, :label => 'sportsTeam', :comment =>
3491
+ %(A sub property of participant. The sports team that
3492
+ participated on this action.)
3493
+ property :spouse, :label => 'spouse', :comment =>
3494
+ %(The person's spouse.)
3495
+ property :stage, :label => 'stage', :comment =>
3496
+ %(The stage of the condition, if applicable.)
3497
+ property :stageAsNumber, :label => 'stageAsNumber', :comment =>
3498
+ %(The stage represented as a number, e.g. 3.)
3499
+ property :startDate, :label => 'startDate', :comment =>
3500
+ %(The start date and time of the event or item \(in <a
3501
+ href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date
3502
+ format</a>\).)
3503
+ property :startTime, :label => 'startTime', :comment =>
3504
+ %(When the Action was performed: start time. This is for actions
3505
+ that span a period of time. e.g. John wrote a book from
3506
+ *January* to December.)
3507
+ property :status, :label => 'status', :comment =>
3508
+ %(The status of the study \(enumerated\).)
3509
+ property :storageRequirements, :label => 'storageRequirements', :comment =>
3510
+ %(Storage requirements \(free space required\).)
3511
+ property :streetAddress, :label => 'streetAddress', :comment =>
3512
+ %(The street address. For example, 1600 Amphitheatre Pkwy.)
3513
+ property :strengthUnit, :label => 'strengthUnit', :comment =>
3514
+ %(The units of an active ingredient's strength, e.g. mg.)
3515
+ property :strengthValue, :label => 'strengthValue', :comment =>
3516
+ %(The value of an active ingredient's strength, e.g. 325.)
3517
+ property :structuralClass, :label => 'structuralClass', :comment =>
3518
+ %(The name given to how bone physically connects to each other.)
3519
+ property :study, :label => 'study', :comment =>
3520
+ %(A medical study or trial related to this entity.)
3521
+ property :studyDesign, :label => 'studyDesign', :comment =>
3522
+ %(Specifics about the observational study design \(enumerated\).)
3523
+ property :studyLocation, :label => 'studyLocation', :comment =>
3524
+ %(The location in which the study is taking/took place.)
3525
+ property :studySubject, :label => 'studySubject', :comment =>
3526
+ %(A subject of the study, i.e. one of the medical conditions,
3527
+ therapies, devices, drugs, etc. investigated by the study.)
3528
+ property :subEvent, :label => 'subEvent', :comment =>
3529
+ %(An Event that is part of this event. For example, a conference
3530
+ event includes many presentations, each are a subEvent of the
3531
+ conference.)
3532
+ property :subEvents, :label => 'subEvents', :comment =>
3533
+ %(Events that are a part of this event. For example, a
3534
+ conference event includes many presentations, each are
3535
+ subEvents of the conference \(legacy spelling; see singular
3536
+ form, subEvent\).)
3537
+ property :subOrganization, :label => 'subOrganization', :comment =>
3538
+ %(A relationship between two organizations where the first
3539
+ includes the second, e.g., as a subsidiary. See also: the more
3540
+ specific 'department' property.)
3541
+ property :subStageSuffix, :label => 'subStageSuffix', :comment =>
3542
+ %(The substage, e.g. 'a' for Stage IIIa.)
3543
+ property :subStructure, :label => 'subStructure', :comment =>
3544
+ %(Component \(sub-\)structure\(s\) that comprise this anatomical
3545
+ structure.)
3546
+ property :subTest, :label => 'subTest', :comment =>
3547
+ %(A component test of the panel.)
3548
+ property :subtype, :label => 'subtype', :comment =>
3549
+ %(A more specific type of the condition, where applicable, for
3550
+ example 'Type 1 Diabetes', 'Type 2 Diabetes', or 'Gestational
3551
+ Diabetes' for Diabetes.)
3552
+ property :successorOf, :label => 'successorOf', :comment =>
3553
+ %(A pointer from a newer variant of a product to its previous,
3554
+ often discontinued predecessor.)
3555
+ property :sugarContent, :label => 'sugarContent', :comment =>
3556
+ %(The number of grams of sugar.)
3557
+ property :suggestedGender, :label => 'suggestedGender', :comment =>
3558
+ %(The gender of the person or audience.)
3559
+ property :suggestedMaxAge, :label => 'suggestedMaxAge', :comment =>
3560
+ %(Maximal age recommended for viewing content)
3561
+ property :suggestedMinAge, :label => 'suggestedMinAge', :comment =>
3562
+ %(Minimal age recommended for viewing content)
3563
+ property :superEvent, :label => 'superEvent', :comment =>
3564
+ %(An event that this event is a part of. For example, a
3565
+ collection of individual music performances might each have a
3566
+ music festival as their superEvent.)
3567
+ property :supplyTo, :label => 'supplyTo', :comment =>
3568
+ %(The area to which the artery supplies blood to.)
3569
+ property :targetDescription, :label => 'targetDescription', :comment =>
3570
+ %(The description of a node in an established educational
3571
+ framework.)
3572
+ property :targetName, :label => 'targetName', :comment =>
3573
+ %(The name of a node in an established educational framework.)
3574
+ property :targetPlatform, :label => 'targetPlatform', :comment =>
3575
+ %(Type of app development: phone, Metro style, desktop, XBox,
3576
+ etc.)
3577
+ property :targetPopulation, :label => 'targetPopulation', :comment =>
3578
+ %(Characteristics of the population for which this is intended,
3579
+ or which typically uses it, e.g. 'adults'.)
3580
+ property :targetProduct, :label => 'targetProduct', :comment =>
3581
+ %(Target Operating System / Product to which the code applies.
3582
+ If applies to several versions, just the product name can be
3583
+ used.)
3584
+ property :targetUrl, :label => 'targetUrl', :comment =>
3585
+ %(The URL of a node in an established educational framework.)
3586
+ property :taxID, :label => 'taxID', :comment =>
3587
+ %(The Tax / Fiscal ID of the organization or person, e.g. the
3588
+ TIN in the US or the CIF/NIF in Spain.)
3589
+ property :telephone, :label => 'telephone', :comment =>
3590
+ %(The telephone number.)
3591
+ property :temporal, :label => 'temporal', :comment =>
3592
+ %(The range of temporal applicability of a dataset, e.g. for a
3593
+ 2011 census dataset, the year 2011 \(in ISO 8601 time interval
3594
+ format\).)
3595
+ property :text, :label => 'text', :comment =>
3596
+ %(The textual content of this CreativeWork.)
3597
+ property :thumbnail, :label => 'thumbnail', :comment =>
3598
+ %(Thumbnail image for an image or video.)
3599
+ property :thumbnailUrl, :label => 'thumbnailUrl', :comment =>
3600
+ %(A thumbnail image relevant to the Thing.)
3601
+ property :tickerSymbol, :label => 'tickerSymbol', :comment =>
3602
+ %(The exchange traded instrument associated with a Corporation
3603
+ object. The tickerSymbol is expressed as an exchange and an
3604
+ instrument name separated by a space character. For the
3605
+ exchange component of the tickerSymbol attribute, we
3606
+ reccommend using the controlled vocaulary of Market Identifier
3607
+ Codes \(MIC\) specified in ISO15022.)
3608
+ property :timeRequired, :label => 'timeRequired', :comment =>
3609
+ %(Approximate or typical time it takes to work with or through
3610
+ this learning resource for the typical intended target
3611
+ audience, e.g. 'P30M', 'P1H25M'.)
3612
+ property :tissueSample, :label => 'tissueSample', :comment =>
3613
+ %(The type of tissue sample required for the test.)
3614
+ property :title, :label => 'title', :comment =>
3615
+ %(The title of the job.)
3616
+ property :toLocation, :label => 'toLocation', :comment =>
3617
+ %(A sub property of location. The final location of the object
3618
+ or the agent after the action.)
3619
+ property :totalTime, :label => 'totalTime', :comment =>
3620
+ %(The total time it takes to prepare and cook the recipe, in <a
3621
+ href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration
3622
+ format</a>.)
3623
+ property :track, :label => 'track', :comment =>
3624
+ %(A music recording \(track\)&#x2014;usually a single song.)
3625
+ property :trackingNumber, :label => 'trackingNumber', :comment =>
3626
+ %(Shipper tracking number.)
3627
+ property :trackingUrl, :label => 'trackingUrl', :comment =>
3628
+ %(Tracking url for the parcel delivery.)
3629
+ property :tracks, :label => 'tracks', :comment =>
3630
+ %(A music recording \(track\)&#x2014;usually a single song
3631
+ \(legacy spelling; see singular form, track\).)
3632
+ property :trailer, :label => 'trailer', :comment =>
3633
+ %(The trailer of a movie or tv/radio series, season, or episode.)
3634
+ property :transFatContent, :label => 'transFatContent', :comment =>
3635
+ %(The number of grams of trans fat.)
3636
+ property :transcript, :label => 'transcript', :comment =>
3637
+ %(If this MediaObject is an AudioObject or VideoObject, the
3638
+ transcript of that object.)
3639
+ property :transmissionMethod, :label => 'transmissionMethod', :comment =>
3640
+ %(How the disease spreads, either as a route or vector, for
3641
+ example 'direct contact', 'Aedes aegypti', etc.)
3642
+ property :trialDesign, :label => 'trialDesign', :comment =>
3643
+ %(Specifics about the trial design \(enumerated\).)
3644
+ property :tributary, :label => 'tributary', :comment =>
3645
+ %(The anatomical or organ system that the vein flows into; a
3646
+ larger structure that the vein connects to.)
3647
+ property :typeOfGood, :label => 'typeOfGood', :comment =>
3648
+ %(The product that this structured value is referring to.)
3649
+ property :typicalAgeRange, :label => 'typicalAgeRange', :comment =>
3650
+ %(The typical expected age range, e.g. '7-9', '11-'.)
3651
+ property :typicalTest, :label => 'typicalTest', :comment =>
3652
+ %(A medical test typically performed given this condition.)
3653
+ property :unitCode, :label => 'unitCode', :comment =>
3654
+ %(The unit of measurement given using the UN/CEFACT Common Code
3655
+ \(3 characters\).)
3656
+ property :unsaturatedFatContent, :label => 'unsaturatedFatContent', :comment =>
3657
+ %(The number of grams of unsaturated fat.)
3658
+ property :uploadDate, :label => 'uploadDate', :comment =>
3659
+ %(Date when this media object was uploaded to this site.)
3660
+ property :url, :label => 'url', :comment =>
3661
+ %(URL of the item.)
3662
+ property :usedToDiagnose, :label => 'usedToDiagnose', :comment =>
3663
+ %(A condition the test is used to diagnose.)
3664
+ property :usesDevice, :label => 'usesDevice', :comment =>
3665
+ %(Device used to perform the test.)
3666
+ property :validFor, :label => 'validFor', :comment =>
3667
+ %(The time validity of the permit.)
3668
+ property :validFrom, :label => 'validFrom', :comment =>
3669
+ %(The date when the item becomes valid.)
3670
+ property :validIn, :label => 'validIn', :comment =>
3671
+ %(The geographic area where the permit is valid.)
3672
+ property :validThrough, :label => 'validThrough', :comment =>
3673
+ %(The end of the validity of offer, price specification, or
3674
+ opening hours data.)
3675
+ property :validUntil, :label => 'validUntil', :comment =>
3676
+ %(The date when the item is no longer valid.)
3677
+ property :value, :label => 'value', :comment =>
3678
+ %(The value of the product characteristic.)
3679
+ property :valueAddedTaxIncluded, :label => 'valueAddedTaxIncluded', :comment =>
3680
+ %(Specifies whether the applicable value-added tax \(VAT\) is
3681
+ included in the price specification or not.)
3682
+ property :valueReference, :label => 'valueReference', :comment =>
3683
+ %(A pointer to a secondary value that provides additional
3684
+ information on the original value, e.g. a reference
3685
+ temperature.)
3686
+ property :vatID, :label => 'vatID', :comment =>
3687
+ %(The Value-added Tax ID of the organisation or person.)
3688
+ property :vendor, :label => 'vendor', :comment =>
3689
+ %(A sub property of participant. The seller.The
3690
+ participant/person/organization that sold the object.)
3691
+ property :version, :label => 'version', :comment =>
3692
+ %(The version of the CreativeWork embodied by a specified
3693
+ resource.)
3694
+ property :video, :label => 'video', :comment =>
3695
+ %(An embedded video object.)
3696
+ property :videoFrameSize, :label => 'videoFrameSize', :comment =>
3697
+ %(The frame size of the video.)
3698
+ property :videoQuality, :label => 'videoQuality', :comment =>
3699
+ %(The quality of the video.)
3700
+ property :warning, :label => 'warning', :comment =>
3701
+ %(Any FDA or other warnings about the drug \(text or URL\).)
3702
+ property :warranty, :label => 'warranty', :comment =>
3703
+ %(The warranty promise\(s\) included in the offer.)
3704
+ property :warrantyPromise, :label => 'warrantyPromise', :comment =>
3705
+ %(The warranty promise\(s\) included in the offer.)
3706
+ property :warrantyScope, :label => 'warrantyScope', :comment =>
3707
+ %(The scope of the warranty promise.)
3708
+ property :weight, :label => 'weight', :comment =>
3709
+ %(The weight of the product.)
3710
+ property :width, :label => 'width', :comment =>
3711
+ %(The width of the item.)
3712
+ property :winner, :label => 'winner', :comment =>
3713
+ %(A sub property of participant. The winner of the action.)
3714
+ property :wordCount, :label => 'wordCount', :comment =>
3715
+ %(The number of words in the text of the Article.)
3716
+ property :workHours, :label => 'workHours', :comment =>
3717
+ %(The typical working hours for this job \(e.g. 1st shift, night
3718
+ shift, 8am-5pm\).)
3719
+ property :workLocation, :label => 'workLocation', :comment =>
3720
+ %(A contact location for a person's place of work.)
3721
+ property :workload, :label => 'workload', :comment =>
3722
+ %(Quantitative measure of the physiologic output of the
3723
+ exercise; also referred to as energy expenditure.)
3724
+ property :worksFor, :label => 'worksFor', :comment =>
3725
+ %(Organizations that the person works for.)
3726
+ property :worstRating, :label => 'worstRating', :comment =>
3727
+ %(The lowest value allowed in this rating system. If worstRating
3728
+ is omitted, 1 is assumed.)
3729
+ property :yearlyRevenue, :label => 'yearlyRevenue', :comment =>
3730
+ %(The size of the business in annual revenue.)
3731
+ property :yearsInOperation, :label => 'yearsInOperation', :comment =>
3732
+ %(The age of the business.)
651
3733
  end
652
3734
  end