// This file demonstrates the new features in JSON Grid View.
// Switch to Grid View to enjoy new features like filters and formulas.
{
	"receiptID": "123-456-7890",
	"paymentMethod": "Cash",
	"items": [
		{
			"itemID": "1",
			"displayName": "Milk",
			"price": 0.79,
			"quantity": 3,
			//(:altova_xq_embed:)subTotal(:altova_xq_key:)?price * ?quantity
			"subTotal": 2.37
			//(:altova_xq_end:)
		},
		{
			"itemID": "2",
			"displayName": "Yogurt",
			"price": 0.59,
			"quantity": 2,
			//(:altova_xq_embed:)subTotal(:altova_xq_key:)?price * ?quantity
			"subTotal": 1.18
			//(:altova_xq_end:)
		},
		{
			"itemID": "3",
			"displayName": "Chocolate 85%",
			"price": 2.99,
			"quantity": 1,
			//(:altova_xq_embed:)subTotal(:altova_xq_key:)?price * ?quantity
			"subTotal": 2.99
			//(:altova_xq_end:)
		},
		{
			"itemID": "4",
			"displayName": "Fancy Wine",
			"price": 18.99,
			"quantity": 1,
			//(:altova_xq_embed:)subTotal(:altova_xq_key:)?price * ?quantity
			"subTotal": 18.99
			//(:altova_xq_end:)
		}
	],
	/*(:altova_xq_embed:)totalPrice(:altova_xq_key:)sum(for $item in ?items?*
return $item?price * $item?quantity)*/
	"totalPrice": 25.53
	//(:altova_xq_end:)
}