forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdo-property-value-examples.txt
711 lines (567 loc) · 18.1 KB
/
sdo-property-value-examples.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
TYPES: #exif ImageObject, PropertyValue, additionalProperty
PRE-MARKUP:
<h2>Beach in Mexico</h2>
<img src="mexico-beach.jpg" alt="" />
By Jane Doe
Photographed in Puerto Vallarta, Mexico
Date uploaded: Jan 25, 2008
I took this picture while on vacation last year.
<!-- We assume the following EXIF meta-data is available, but currently not shown:
Exposure Time: 1/659 sec.
FNumber: f/4.0
MaxApertureValue: 2.00
Metering Mode: Pattern
Flash: Flash did not fire.
-->
MICRODATA:
<div itemscope itemtype="http://schema.org/ImageObject">
<h2 itemprop="name">Beach in Mexico</h2>
<img src="mexico-beach.jpg" alt="" itemprop="contentUrl" />
By <span itemprop="author">Jane Doe</span>
Photographed in
<span itemprop="contentLocation">Puerto Vallarta, Mexico</span>
Date uploaded:
<meta itemprop="datePublished" content="2008-01-25">Jan 25, 2008
<span itemprop="description">I took this picture while on vacation last year.</span>
<!-- Note: We do not split value strings in unit and value information, since this the raw EXIF data does not provide this granularity. If you are able to separate the unit, you can use the unitText property -->
<div itemprop="exifData" itemscope itemtype="http://schema.org/PropertyValue">
<meta itemprop="name" content="Exposure Time">
<meta itemprop="value" content="1/659 sec.">
</div>
<div itemprop="exifData" itemscope itemtype="http://schema.org/PropertyValue">
<meta itemprop="name" content="FNumber">
<meta itemprop="value" content="f/4.0">
</div>
<div itemprop="exifData" itemscope itemtype="http://schema.org/PropertyValue">
<meta itemprop="name" content="MaxApertureValue">
<meta itemprop="value" content="2.00">
</div>
<div itemprop="exifData" itemscope itemtype="http://schema.org/PropertyValue">
<meta itemprop="name" content="Metering Mode">
<meta itemprop="value" content="Pattern">
</div>
<div itemprop="exifData" itemscope itemtype="http://schema.org/PropertyValue">
<meta itemprop="name" content="Flash">
<meta itemprop="value" content="Flash did not fire.">
</div>
</div>
RDFA:
<div vocab="http://schema.org/" typeof="ImageObject">
<h2 property="name">Beach in Mexico</h2>
<img src="mexico-beach.jpg" alt="" property="contentUrl" />
By <span property="author">Jane Doe</span>
Photographed in
<span property="contentLocation">Puerto Vallarta, Mexico</span>
Date uploaded:
<meta property="datePublished" content="2008-01-25">Jan 25, 2008
<span property="description">I took this picture while on vacation last year.</span>
<!-- Note: We do not split value strings in unit and value information, since this the raw EXIF data does not provide this granularity. If you are able to separate the unit, you can use the unitText property -->
<div property="exifData" typeOf="PropertyValue">
<meta property="name" content="Exposure Time">
<meta property="value" content="1/659 sec.">
</div>
<div property="exifData" typeOf="PropertyValue">
<meta property="name" content="FNumber">
<meta property="value" content="f/4.0">
</div>
<div property="exifData" typeOf="PropertyValue">
<meta property="name" content="MaxApertureValue">
<meta property="value" content="2.00">
</div>
<div property="exifData" typeOf="PropertyValue">
<meta property="name" content="Metering Mode">
<meta property="value" content="Pattern">
</div>
<div property="exifData" typeOf="PropertyValue">
<meta property="name" content="Flash">
<meta property="value" content="Flash did not fire.">
</div>
</div>
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ImageObject",
"author": "Jane Doe",
"contentLocation": "Puerto Vallarta, Mexico",
"contentUrl": "mexico-beach.jpg",
"datePublished": "2008-01-25",
"description": "I took this picture while on vacation last year.",
"name": "Beach in Mexico",
"exifData": [
{
"@type": "PropertyValue",
"name": "Exposure Time",
"value": "1/659 sec."
},
{
"@type": "PropertyValue",
"name": "FNumber",
"value": "f/4.0"
},
{
"@type": "PropertyValue",
"name": "MaxApertureValue",
"value": "2.00"
},
{
"@type": "PropertyValue",
"name": "Metering Mode",
"value": "Pattern"
},
{
"@type": "PropertyValue",
"name": "Flash",
"value": "Flash did not fire."
}
]
}
</script>
TYPES: #pointvalue-1 PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Point Value, with unit as text -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Approx. Weight</span>
<span>450</span>
<span>gram</span>
</div>
</div>
MICRODATA:
<!-- Product: Point Value, with unit as text -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Approx. Weight</span>
<span itemprop="value">450</span>
<span itemprop="unitText">gram</span>
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #pointvalue-1 PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Point Value, with unit as symbol -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Approx. Weight</span>
<span>450</span>
<span>g</span>
</div>
</div>
MICRODATA:
<!-- Product: Point Value, with unit as symbol -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Approx. Weight</span>
<span itemprop="value">450</span>
<span itemprop="unitText">g</span>
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-lD
TYPES: #pointvalue-3 PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Point Value, with unit as UN/CEFACT Common Code to be added to the template -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Approx. Weight</span>
<span>450</span>g
</div>
</div>
MICRODATA:
<!-- Product: Point Value, with unit as UN/CEFACT Common Code -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Approx. Weight</span>
<span itemprop="value">450</span>
<meta itemprop="unitCode" content="GRM">g
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #range-1 PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Range, with unit as UN/CEFACT Common Code to be added to the template -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Operating Voltage</span>
<span>100</span>-
<span>250</span>
volts
</div>
</div>
MICRODATA:
<!-- Product: Range, with unit as UN/CEFACT Common Code -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Operating Voltage</span>
<span itemprop="minValue">100</span>-
<span itemprop="maxValue">250</span>
<meta itemprop="unitCode" content="VLT">volts
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #openinterval PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Open Interval, with unit as UN/CEFACT Common Code to be added to the template -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Wifi range</span>: up to
<span>30</span>
ft.
</div>
</div>
MICRODATA:
<!-- Product: Open Interval, with unit as UN/CEFACT Common Code -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Wifi range</span>: up to
<span itemprop="maxValue">30</span>
<!-- Note: The UN/CEFACT Common Code for foot is FOT -->
<meta itemprop="unitCode" content="FOT">ft.
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #intervals PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Multiple Intervals -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Operating voltage</span>:
<span>9-12</span> or
<span>100-250</span>
volts
</div>
</div>
MICRODATA:
<!-- Product: Multiple Intervals -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Operating voltage</span>:
<span itemprop="value">9-12</span> or
<span itemprop="value">100-250</span>
<meta itemprop="unitCode" content="VLT">volts
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #range-and-enumeration PropertyValue
PRE-MARKUP:
<!-- Product: Range and Enumerated Values -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>ISO Sensitivity</span>:
<span>100-6400</span>/
<span>12,800</span> (Hi-1)
<span>ISO</span>
</div>
</div>
MICRODATA:
<!-- Product: Range and Enumerated Values -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">ISO Sensitivity</span>:
<span itemprop="value">100-6400</span>/
<span itemprop="value">12,800</span> (Hi-1)
<span itemprop="unitText">ISO</span>
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #boolean PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Boolean Value -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>USB interface</span>: Yes
</div>
</div>
MICRODATA:
<!-- Product: Boolean Value -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">USB interface</span>:
<meta itemprop="value" content="True">Yes
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #qualitative-1 PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Qualitative Value -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Interface</span>: <span>USB</span>
</div>
</div>
MICRODATA:
<!-- Product: Qualitative Value -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Interface</span>:
<span itemprop="value">USB</span>
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #qualitative-2 PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Qualitative Value (multiple) -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Interfaces</span>:
<span>USB</span>,
<span>Ethernet</span>
</div>
</div>
MICRODATA:
<!-- Product: Qualitative Value (multiple) -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Interfaces</span>:
<span itemprop="value">USB</span>,
<span itemprop="value">Ethernet</span>
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #property-id-1 PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Property ID for clarifying the meaning of a property: URI from external vocabulary -->
<!-- (see microdata example for comparison) -->
<div>
<img src="station_waggon123.jpg" alt="" />
<span>Station Waggon 123</span>
<div>
<span>Luggage Capacity (seats folded)</span>:
<span>500</span>
liter
</div>
</div>
MICRODATA:
<!-- Product: Property ID for clarifying the meaning of a property: URI from external vocabulary -->
<div itemscope itemtype="http://schema.org/Car">
<img itemprop="image" src="station_waggon123.jpg" alt="" />
<span itemprop="name">Station Waggon 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Luggage Capacity (seats folded)</span>:
<span itemprop="value">500</span>
<meta itemprop="unitCode" content="LTR">liter
<link itemprop="propertyID" href="http://purl.org/vvo/ns#luggageCapacitySeatsFolded" />
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #property-id-2 PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Property ID for clarifying the meaning of a property: Code from eCl@ss Standard -->
<!-- The Property code 02-AAM226 is for "USB interface present" in eCl@ss 8.1
(see microdata example for comparison) -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>USB Interface</span>:Yes
</div>
</div>
MICRODATA:
<!-- Product: Property ID for clarifying the meaning of a property: Code from eCl@ss Standard -->
<!-- The Property code 02-AAM226 is for "USB interface present" in eCl@ss 8.1 -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">USB Interface</span>:
<meta itemprop="value" content="True">Yes
<meta itemprop="propertyID" content="eclass81:02-AAM226">
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #valueref PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Value References -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<span>Operating Voltage</span>
<span>100</span>-
<span>250</span>
volts
at
<div>
<span>50</span>
<span>Hz</span>
</div>
</div>
</div>
MICRODATA:
<!-- Product: Value References -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Operating Voltage</span>
<span itemprop="minValue">100</span>-
<span itemprop="maxValue">250</span>
<meta itemprop="unitCode" content="VLT">volts
at
<div itemprop="valueReference" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="value">50</span>
<span itemprop="unitText">Hz</span>
</div>
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #ratios PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Ratios -->
<div>
<img src="station_waggon123.jpg" alt="" />
<span>Station Waggon 123</span>
<div>
<span>Fuel consumption</span>:
<span>5</span>
<meta>liter</span> /
<div>
<span>100</span>
<span>km</span>
</div>
</div>
</div>
MICRODATA:
<!-- Product: Ratios -->
<div itemscope itemtype="http://schema.org/Car">
<img itemprop="image" src="station_waggon123.jpg" alt="" />
<span itemprop="name">Station Waggon 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Fuel consumption</span>:
<span itemprop="value">5</span>
<meta itemprop="unitCode" content="LTR">liter /
<div itemprop="valueReference" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="value">100</span>
<span itemprop="unitText">km</span>
</div>
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: #grouping PropertyValue, additionalProperty
PRE-MARKUP:
<!-- Product: Grouping and Hierarchical Order of Properties -->
<div>
<img src="camera123.jpg" alt="" />
<span>Digital Camera 123</span>
<div>
<strong>Focus/Autofocus</strong>
<div>
<span>Picture Control</span>
<span>Landscape</span>
<span>Monochrome</span>
<span>Portrait</span>
</div>
<div>
<span>Single-point AF Mode</span>: Yes
</div>
</div>
</div>
MICRODATA:
<!-- Product: Grouping and Hierarchical Order of Properties -->
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="camera123.jpg" alt="" />
<span itemprop="name">Digital Camera 123</span>
<div itemprop="additionalProperty" itemscope itemtype="http://schema.org/PropertyValue">
<strong itemprop="name">Focus/Autofocus</strong>
<div itemprop="value" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Picture Control</span>
<span itemprop="value">Landscape</span>
<span itemprop="value">Monochrome</span>
<span itemprop="value">Portrait</span>
</div>
<div itemprop="value" itemscope itemtype="http://schema.org/PropertyValue">
<span itemprop="name">Single-point AF Mode</span>:
<meta itemprop="value" content="True">Yes
</div>
</div>
</div>
RDFA:
No RDFa
JSON:
No JSON-LD
TYPES: FakeEntryNeeded, FixMeSomeDay
PRE-MARKUP:
MICRODATA:
RDFA:
JSON: