forked from JayHoltslander/Structured-Data-JSON-LD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Product.json
77 lines (77 loc) · 2.06 KB
/
Product.json
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
<script type="application/ld+json">
{
"@context": "http://www.schema.org",
"@type": "Product",
"brand": "Adobe Inc",
"name": "Adobe Photoshop",
"alternateName": "Photoshop",
"url": "https://www.adobe.com/photoshop/",
"description": "Adobe Photoshop is a raster graphics editor developed and published by Adobe Inc. for Windows and macOS. It was originally created in 1988 by Thomas and John Knoll. Since then, this software has become the industry standard not only in raster graphics editing, but in digital art as a whole.",
"sku":"65206830BC01A12",
"mpn": "883919231389",
"logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Adobe_Photoshop_CC_icon.svg/66px-Adobe_Photoshop_CC_icon.svg.png",
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
],
"sameas": [
"https://twitter.com/photoshop",
"https://facebook.com/photoshop"
],
"issimilarto": [
{
"@type": "Product",
"brand": "GIMP",
"name": "GIMP",
"description": "A graphic editor program.",
"url": "https://www.gimp.org/",
"sameas": [
"https://twitter.com/gimp",
"https://facebook.com/gimp"
]
},
{
"@type": "Product",
"brand": "Pixlr",
"name": "Pixlr",
"description": "A graphic editor program.",
"url": "https://pixlr.com/",
"sameas": [
"https://twitter.com/pixlr",
"https://facebook.com/pixlr"
]
}
],
"offers": {
"@type": "Offer",
"url": "https://example.com/anvil",
"priceCurrency": "USD",
"price": "119.99",
"priceValidUntil": "2020-11-05",
"itemCondition": "https://schema.org/UsedCondition",
"availability": "https://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Executive Objects"
}
},
"review": {
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": "5",
"bestRating": "5"
},
"author": {
"@type": "Person",
"name": "Jay Holtslander"
}
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5",
"reviewCount": "1"
}
}
</script>