-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathissue-2811-examples.txt
More file actions
97 lines (86 loc) · 2.52 KB
/
issue-2811-examples.txt
File metadata and controls
97 lines (86 loc) · 2.52 KB
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
TYPES: #eg-464 SizeSpecification, MeasurementTypeEnumeration, WearableMeasurementTypeEnumeration, BodyMeasurementTypeEnumeration, SizeSystemEnumeration, SizeGroupEnumeration
PRE-MARKUP:
Complete example for a men's jacket with comprehensive size specification:
- Size system: US
- Size group: Men's Big & Tall
- Size code: 3XL
- Jacket measurements: chest: 52 inches, and length 42 inches.
- Suggested age group: 13 years and up
- Suggested body measurements: chest: 51-54 inches; height: 6-6.3 feet
MICRODATA:
<!-- JSONLD only example -->
RDFA:
<!-- JSONLD only example -->
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"sku": "44E01-M11000",
"inProductGroupWithID": "44E01",
"gtin14": "98766051104218",
"image": "https://www.example.com/jacket_large_green.jpg",
"name": "Large green jacket",
"description": "Large wool green jacket for the winter months",
"brand": {
"@type": "Brand",
"name": "A fashion brand"
},
"color": "green",
"size": {
"@type": "SizeSpecification",
"sizeSystem": "https://schema.org/WearableSizeSystemUS",
"sizeGroup": [
"https://schema.org/WearableSizeGroupMens",
"https://schema.org/WearableSizeGroupBig",
"https://schema.org/WearableSizeGroupTall"
],
"name": "3XL",
"hasMeasurement": [
{
"@type": "QuantitativeValue",
"valueReference": "https://schema.org/WearableMeasurementChestOrBust",
"unitCode": "INH",
"value": 52
},
{
"@type": "QuantitativeValue",
"valueReference": "https://schema.org/WearableMeasurementLength",
"unitCode": "INH",
"value": 42
}
],
"suggestedGender": "male",
"suggestedAge": {
"@type": "QuantitativeValue",
"name": "adult",
"unitCode": "ANN",
"minValue": 13
},
"suggestedMeasurement": [
{
"@type": "QuantitativeValue",
"valueReference": "https://schema.org/BodyMeasurementChest",
"unitCode": "INH",
"minValue": 51,
"maxValue": 54
},
{
"@type": "QuantitativeValue",
"valueReference": "https://schema.org/BodyMeasurementHeight",
"unitCode": "FOT",
"minValue": 6,
"maxValue": 6.3
}
]
},
"offers": {
"@type": "Offer",
"url": "https://www.example.com/jacket?s=l&c=g",
"priceCurrency": "USD",
"price": 239.99,
"itemCondition": "https://schema.org/NewCondition",
"availability": "https://schema.org/InStock"
}
}
</script>