Skip to content

Commit 9b0d5bf

Browse files
chore: added annotated output samples
1 parent 32dc811 commit 9b0d5bf

11 files changed

Lines changed: 2085 additions & 0 deletions

File tree

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
{
2+
"@context": "https://schema.org",
3+
"@graph": [
4+
{
5+
"@id": "#merchant",
6+
"@type": "Store",
7+
"name": "TEO HENG STATIONERY & BOOKS",
8+
"address": {
9+
"@type": "PostalAddress",
10+
"streetAddress": "NO. 53, JALAN BESAR",
11+
"addressLocality": "BATANG BERJUNTAI",
12+
"addressRegion": "SELANGOR",
13+
"postalCode": "45400"
14+
},
15+
"telephone": "03-3271 9872",
16+
"faxNumber": "03-3271 9481",
17+
"identifier": {
18+
"@type": "PropertyValue",
19+
"name": "Company Registration Number",
20+
"value": "001451637-M"
21+
}
22+
},
23+
{
24+
"@id": "#order",
25+
"@type": "Order",
26+
"seller": {
27+
"@id": "#merchant"
28+
},
29+
"orderNumber": "C81801/27037",
30+
"orderDate": "2018-01-23T00:00:00",
31+
"paymentMethod": "https://schema.org/Cash",
32+
"paymentStatus": "https://schema.org/PaymentComplete",
33+
"priceCurrency": "MYR",
34+
"acceptedOffer": [
35+
{
36+
"@id": "#offer-1"
37+
},
38+
{
39+
"@id": "#offer-2"
40+
}
41+
],
42+
"additionalProperty": [
43+
{
44+
"@type": "PropertyValue",
45+
"name": "Receipt Type",
46+
"value": "CASH"
47+
},
48+
{
49+
"@type": "PropertyValue",
50+
"name": "GST Number",
51+
"value": "000689913856"
52+
},
53+
{
54+
"@type": "PropertyValue",
55+
"name": "Total Excluding GST",
56+
"value": "16.98",
57+
"unitText": "MYR"
58+
},
59+
{
60+
"@type": "PropertyValue",
61+
"name": "GST Amount",
62+
"value": "1.02",
63+
"unitText": "MYR"
64+
},
65+
{
66+
"@type": "PropertyValue",
67+
"name": "Total",
68+
"value": "18.00",
69+
"unitText": "MYR"
70+
},
71+
{
72+
"@type": "PropertyValue",
73+
"name": "Cash",
74+
"value": "18.00",
75+
"unitText": "MYR"
76+
},
77+
{
78+
"@type": "PropertyValue",
79+
"name": "Change",
80+
"value": "0.00",
81+
"unitText": "MYR"
82+
}
83+
]
84+
},
85+
{
86+
"@id": "#offer-1",
87+
"@type": "Offer",
88+
"seller": {
89+
"@id": "#merchant"
90+
},
91+
"price": "6.60",
92+
"priceCurrency": "MYR",
93+
"itemOffered": {
94+
"@id": "#product-1"
95+
},
96+
"eligibleQuantity": {
97+
"@type": "QuantitativeValue",
98+
"value": 5,
99+
"unitText": "item"
100+
}
101+
},
102+
{
103+
"@id": "#product-1",
104+
"@type": "Product",
105+
"name": "DOUBLE SIDED TISSUE TAPE 18MM"
106+
},
107+
{
108+
"@id": "#offer-2",
109+
"@type": "Offer",
110+
"seller": {
111+
"@id": "#merchant"
112+
},
113+
"price": "10.38",
114+
"priceCurrency": "MYR",
115+
"itemOffered": {
116+
"@id": "#product-2"
117+
},
118+
"eligibleQuantity": {
119+
"@type": "QuantitativeValue",
120+
"value": 1,
121+
"unitText": "item"
122+
}
123+
},
124+
{
125+
"@id": "#product-2",
126+
"@type": "Product",
127+
"name": "G SOFT 6ML QUICK DRY CORRECTION PEN"
128+
}
129+
]
130+
}

0 commit comments

Comments
 (0)