Skip to content

Commit 4742a48

Browse files
chore:reached 100 annotated output samples for english
1 parent dc3d3d9 commit 4742a48

14 files changed

Lines changed: 779 additions & 14 deletions
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"@context": "https://schema.org",
3+
"@graph": [
4+
{
5+
"@id": "#merchant",
6+
"@type": "Organization",
7+
"name": "Harbor Supply"
8+
},
9+
{
10+
"@id": "#order",
11+
"@type": "Order",
12+
"seller": { "@id": "#merchant" },
13+
"orderNumber": "R-0000025",
14+
"orderDate": "2023-11-02T16:01:16",
15+
"priceCurrency": "GBP",
16+
"paymentMethod": "https://schema.org/Visa",
17+
"acceptedOffer": [
18+
{ "@id": "#offer-1" },
19+
{ "@id": "#offer-2" },
20+
{ "@id": "#offer-3" },
21+
{ "@id": "#offer-4" }
22+
],
23+
"additionalProperty": [
24+
{ "@type": "PropertyValue", "name": "Total", "unitText": "GBP", "value": "175.11" }
25+
]
26+
},
27+
{
28+
"@id": "#offer-1",
29+
"@type": "Offer",
30+
"price": "79.00",
31+
"priceCurrency": "GBP",
32+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 2, "unitText": "item" },
33+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "39.50", "priceCurrency": "GBP", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
34+
"itemOffered": { "@id": "#item-1" },
35+
"seller": { "@id": "#merchant" }
36+
},
37+
{ "@id": "#item-1", "@type": "Product", "name": "Desk Lamp", "sku": "SKU-7027" },
38+
{
39+
"@id": "#offer-2",
40+
"@type": "Offer",
41+
"price": "42.03",
42+
"priceCurrency": "GBP",
43+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 3, "unitText": "item" },
44+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "14.01", "priceCurrency": "GBP", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
45+
"itemOffered": { "@id": "#item-2" },
46+
"seller": { "@id": "#merchant" }
47+
},
48+
{ "@id": "#item-2", "@type": "Product", "name": "Cleaning Spray", "sku": "SKU-6622" },
49+
{
50+
"@id": "#offer-3",
51+
"@type": "Offer",
52+
"price": "25.96",
53+
"priceCurrency": "GBP",
54+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 2, "unitText": "item" },
55+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "12.98", "priceCurrency": "GBP", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
56+
"itemOffered": { "@id": "#item-3" },
57+
"seller": { "@id": "#merchant" }
58+
},
59+
{ "@id": "#item-3", "@type": "Product", "name": "Sandwich Combo", "sku": "SKU-8938" },
60+
{
61+
"@id": "#offer-4",
62+
"@type": "Offer",
63+
"price": "21.34",
64+
"priceCurrency": "GBP",
65+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 2, "unitText": "item" },
66+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "10.67", "priceCurrency": "GBP", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
67+
"itemOffered": { "@id": "#item-4" },
68+
"seller": { "@id": "#merchant" }
69+
},
70+
{ "@id": "#item-4", "@type": "Product", "name": "Olive Oil", "sku": "SKU-5506" }
71+
]
72+
}
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
{
2+
"@context": "https://schema.org",
3+
"@graph": [
4+
{
5+
"@id": "#merchant",
6+
"@type": "Organization",
7+
"name": "Northwind Market",
8+
"address": {
9+
"@type": "PostalAddress",
10+
"streetAddress": "8260 River Rd",
11+
"addressLocality": "Nashville",
12+
"addressRegion": "IL",
13+
"postalCode": "78446"
14+
}
15+
},
16+
{
17+
"@id": "#order",
18+
"@type": "Order",
19+
"seller": { "@id": "#merchant" },
20+
"orderNumber": "R-0000026",
21+
"orderDate": "2024-08-28T11:35:13",
22+
"priceCurrency": "CAD",
23+
"paymentMethod": "https://schema.org/AmericanExpress",
24+
"acceptedOffer": [
25+
{ "@id": "#offer-1" },
26+
{ "@id": "#offer-2" },
27+
{ "@id": "#offer-3" },
28+
{ "@id": "#offer-4" },
29+
{ "@id": "#offer-5" },
30+
{ "@id": "#offer-6" }
31+
],
32+
"additionalProperty": [
33+
{ "@type": "PropertyValue", "name": "Cashier", "value": "Casey" },
34+
{ "@type": "PropertyValue", "name": "Subtotal", "unitText": "CAD", "value": "239.20" },
35+
{ "@type": "PropertyValue", "name": "Tax", "unitText": "CAD", "value": "25.24" },
36+
{ "@type": "PropertyValue", "name": "Total", "unitText": "CAD", "value": "264.44" }
37+
]
38+
},
39+
{
40+
"@id": "#offer-1",
41+
"@type": "Offer",
42+
"price": "50.56",
43+
"priceCurrency": "CAD",
44+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 2, "unitText": "item" },
45+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "25.28", "priceCurrency": "CAD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
46+
"itemOffered": { "@id": "#item-1" },
47+
"seller": { "@id": "#merchant" }
48+
},
49+
{ "@id": "#item-1", "@type": "Product", "name": "Notebook Set" },
50+
{
51+
"@id": "#offer-2",
52+
"@type": "Offer",
53+
"price": "11.70",
54+
"priceCurrency": "CAD",
55+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 3, "unitText": "item" },
56+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "3.90", "priceCurrency": "CAD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
57+
"itemOffered": { "@id": "#item-2" },
58+
"seller": { "@id": "#merchant" }
59+
},
60+
{ "@id": "#item-2", "@type": "Product", "name": "Cleaning Spray" },
61+
{
62+
"@id": "#offer-3",
63+
"@type": "Offer",
64+
"price": "13.41",
65+
"priceCurrency": "CAD",
66+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" },
67+
"itemOffered": { "@id": "#item-3" },
68+
"seller": { "@id": "#merchant" }
69+
},
70+
{ "@id": "#item-3", "@type": "Product", "name": "Extension Cord" },
71+
{
72+
"@id": "#offer-4",
73+
"@type": "Offer",
74+
"price": "22.06",
75+
"priceCurrency": "CAD",
76+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" },
77+
"itemOffered": { "@id": "#item-4" },
78+
"seller": { "@id": "#merchant" }
79+
},
80+
{ "@id": "#item-4", "@type": "Product", "name": "Laundry Detergent" },
81+
{
82+
"@id": "#offer-5",
83+
"@type": "Offer",
84+
"price": "98.34",
85+
"priceCurrency": "CAD",
86+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 3, "unitText": "item" },
87+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "32.78", "priceCurrency": "CAD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
88+
"itemOffered": { "@id": "#item-5" },
89+
"seller": { "@id": "#merchant" }
90+
},
91+
{ "@id": "#item-5", "@type": "Product", "name": "Paper Towels" },
92+
{
93+
"@id": "#offer-6",
94+
"@type": "Offer",
95+
"price": "43.13",
96+
"priceCurrency": "CAD",
97+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" },
98+
"itemOffered": { "@id": "#item-6" },
99+
"seller": { "@id": "#merchant" }
100+
},
101+
{ "@id": "#item-6", "@type": "Product", "name": "Travel Mug" }
102+
]
103+
}
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
{
2+
"@context": "https://schema.org",
3+
"@graph": [
4+
{
5+
"@id": "#merchant",
6+
"@type": "Organization",
7+
"name": "ATLAS OFFICE DEPOT",
8+
"address": {
9+
"@type": "PostalAddress",
10+
"streetAddress": "86 River Rd",
11+
"addressLocality": "Denver",
12+
"addressRegion": "TN",
13+
"postalCode": "44001"
14+
}
15+
},
16+
{
17+
"@id": "#order",
18+
"@type": "Order",
19+
"seller": { "@id": "#merchant" },
20+
"orderNumber": "R-0000027",
21+
"orderDate": "2025-08-08T10:26:19",
22+
"priceCurrency": "USD",
23+
"paymentMethod": "https://schema.org/Mastercard",
24+
"acceptedOffer": [
25+
{ "@id": "#offer-1" },
26+
{ "@id": "#offer-2" },
27+
{ "@id": "#offer-3" },
28+
{ "@id": "#offer-4" },
29+
{ "@id": "#offer-5" },
30+
{ "@id": "#offer-6" }
31+
],
32+
"additionalProperty": [
33+
{ "@type": "PropertyValue", "name": "Cashier", "value": "Jordan" },
34+
{ "@type": "PropertyValue", "name": "Subtotal", "unitText": "USD", "value": "427.51" },
35+
{ "@type": "PropertyValue", "name": "Discount", "unitText": "USD", "value": "-2.21" },
36+
{ "@type": "PropertyValue", "name": "Tax", "unitText": "USD", "value": "50.75" },
37+
{ "@type": "PropertyValue", "name": "Total", "unitText": "USD", "value": "476.05" }
38+
]
39+
},
40+
{
41+
"@id": "#offer-1",
42+
"@type": "Offer",
43+
"price": "5.64",
44+
"priceCurrency": "USD",
45+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" },
46+
"itemOffered": { "@id": "#item-1" },
47+
"seller": { "@id": "#merchant" }
48+
},
49+
{ "@id": "#item-1", "@type": "Product", "name": "Travel Mug" },
50+
{
51+
"@id": "#offer-2",
52+
"@type": "Offer",
53+
"price": "50.24",
54+
"priceCurrency": "USD",
55+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 2, "unitText": "item" },
56+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "25.12", "priceCurrency": "USD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
57+
"itemOffered": { "@id": "#item-2" },
58+
"seller": { "@id": "#merchant" }
59+
},
60+
{ "@id": "#item-2", "@type": "Product", "name": "Travel Mug" },
61+
{
62+
"@id": "#offer-3",
63+
"@type": "Offer",
64+
"price": "56.56",
65+
"priceCurrency": "USD",
66+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 4, "unitText": "item" },
67+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "14.14", "priceCurrency": "USD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
68+
"itemOffered": { "@id": "#item-3" },
69+
"seller": { "@id": "#merchant" }
70+
},
71+
{ "@id": "#item-3", "@type": "Product", "name": "Printer Labels" },
72+
{
73+
"@id": "#offer-4",
74+
"@type": "Offer",
75+
"price": "154.48",
76+
"priceCurrency": "USD",
77+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 4, "unitText": "item" },
78+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "38.62", "priceCurrency": "USD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
79+
"itemOffered": { "@id": "#item-4" },
80+
"seller": { "@id": "#merchant" }
81+
},
82+
{ "@id": "#item-4", "@type": "Product", "name": "Adhesive Tape" },
83+
{
84+
"@id": "#offer-5",
85+
"@type": "Offer",
86+
"price": "74.13",
87+
"priceCurrency": "USD",
88+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 3, "unitText": "item" },
89+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "24.71", "priceCurrency": "USD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
90+
"itemOffered": { "@id": "#item-5" },
91+
"seller": { "@id": "#merchant" }
92+
},
93+
{ "@id": "#item-5", "@type": "Product", "name": "AA Batteries" },
94+
{
95+
"@id": "#offer-6",
96+
"@type": "Offer",
97+
"price": "86.46",
98+
"priceCurrency": "USD",
99+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 2, "unitText": "item" },
100+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "43.23", "priceCurrency": "USD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
101+
"itemOffered": { "@id": "#item-6" },
102+
"seller": { "@id": "#merchant" }
103+
},
104+
{ "@id": "#item-6", "@type": "Product", "name": "Laundry Detergent" }
105+
]
106+
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"@context": "https://schema.org",
3+
"@graph": [
4+
{
5+
"@id": "#merchant",
6+
"@type": "Organization",
7+
"name": "Maple Street Grocer",
8+
"address": {
9+
"@type": "PostalAddress",
10+
"streetAddress": "5452 Station Ave",
11+
"addressLocality": "Phoenix",
12+
"addressRegion": "GA",
13+
"postalCode": "32957"
14+
}
15+
},
16+
{
17+
"@id": "#order",
18+
"@type": "Order",
19+
"seller": { "@id": "#merchant" },
20+
"orderNumber": "R-0000028",
21+
"orderDate": "2022-07-22T17:55:20",
22+
"priceCurrency": "GBP",
23+
"paymentMethod": "https://schema.org/Visa",
24+
"acceptedOffer": [
25+
{ "@id": "#offer-1" }
26+
],
27+
"additionalProperty": [
28+
{ "@type": "PropertyValue", "name": "Cashier", "value": "Jamie" },
29+
{ "@type": "PropertyValue", "name": "Subtotal", "unitText": "GBP", "value": "146.44" },
30+
{ "@type": "PropertyValue", "name": "Discount", "unitText": "GBP", "value": "0.00" },
31+
{ "@type": "PropertyValue", "name": "Tax", "unitText": "GBP", "value": "6.19" },
32+
{ "@type": "PropertyValue", "name": "Tip", "unitText": "GBP", "value": "0.00" },
33+
{ "@type": "PropertyValue", "name": "Total", "unitText": "GBP", "value": "152.63" }
34+
]
35+
},
36+
{
37+
"@id": "#offer-1",
38+
"@type": "Offer",
39+
"price": "146.44",
40+
"priceCurrency": "GBP",
41+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 4, "unitText": "item" },
42+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "36.61", "priceCurrency": "GBP", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
43+
"itemOffered": { "@id": "#item-1" },
44+
"seller": { "@id": "#merchant" }
45+
},
46+
{ "@id": "#item-1", "@type": "Product", "name": "AA Batteries", "sku": "SKU-4372" }
47+
]
48+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"@context": "https://schema.org",
3+
"@graph": [
4+
{
5+
"@id": "#merchant",
6+
"@type": "Organization",
7+
"name": "Lighthouse Auto Care"
8+
},
9+
{
10+
"@id": "#order",
11+
"@type": "Order",
12+
"seller": { "@id": "#merchant" },
13+
"orderNumber": "R-0000029",
14+
"orderDate": "2023-10-21T14:11:40",
15+
"priceCurrency": "USD",
16+
"acceptedOffer": [
17+
{ "@id": "#offer-1" }
18+
],
19+
"additionalProperty": [
20+
{ "@type": "PropertyValue", "name": "Payment Method", "value": "Card" },
21+
{ "@type": "PropertyValue", "name": "Subtotal", "unitText": "USD", "value": "85.80" },
22+
{ "@type": "PropertyValue", "name": "Discount", "unitText": "USD", "value": "0.00" },
23+
{ "@type": "PropertyValue", "name": "Tax", "unitText": "USD", "value": "7.65" },
24+
{ "@type": "PropertyValue", "name": "Tip", "unitText": "USD", "value": "0.00" },
25+
{ "@type": "PropertyValue", "name": "Total", "unitText": "USD", "value": "93.45" }
26+
]
27+
},
28+
{
29+
"@id": "#offer-1",
30+
"@type": "Offer",
31+
"price": "85.80",
32+
"priceCurrency": "USD",
33+
"eligibleQuantity": { "@type": "QuantitativeValue", "value": 4, "unitText": "item" },
34+
"priceSpecification": { "@type": "UnitPriceSpecification", "price": "21.45", "priceCurrency": "USD", "referenceQuantity": { "@type": "QuantitativeValue", "value": 1, "unitText": "item" } },
35+
"itemOffered": { "@id": "#item-1" },
36+
"seller": { "@id": "#merchant" }
37+
},
38+
{ "@id": "#item-1", "@type": "Product", "name": "Paper Towels", "sku": "SKU-8148" }
39+
]
40+
}

0 commit comments

Comments
 (0)