Created
March 1, 2024 13:45
-
-
Save koladilip/5c209b2df5edeae5556aff354ca75178 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"code": "// Enter your JsonTemplate code here\n^[email protected]@product.({\n order_id: order.order_id,\n product_id: product.product_id,\n product_name: product.name,\n quantity: product.quantity,\n price: product.price,\n amount: product.price * product.quantity\n})", | |
"name": "Order-example", | |
"type": "JsonTemplate", | |
"data": "{\n \"orders\": [\n {\n \"order_id\": \"OD123456789\",\n \"customer_id\": \"CUS987654321\",\n \"order_date\": \"2024-03-01\",\n \"products\": [\n {\n \"product_id\": \"PROD001\",\n \"name\": \"Smartphone\",\n \"price\": 99,\n \"quantity\": 3\n },\n {\n \"product_id\": \"PROD002\",\n \"name\": \"Laptop\",\n \"price\": 999.99,\n \"quantity\": 1\n }\n ]\n },\n {\n \"order_id\": \"OD987654321\",\n \"customer_id\": \"CUS123456789\",\n \"order_date\": \"2024-03-02\",\n \"products\": [\n {\n \"product_id\": \"PROD002\",\n \"name\": \"Laptop\",\n \"price\": 999.99,\n \"quantity\": 1\n },\n {\n \"product_id\": \"PROD003\",\n \"name\": \"Headphones\",\n \"price\": 25.50,\n \"quantity\": 2\n }\n ]\n }\n ]\n}", | |
"bindings": "const bindings = {\n \"description\": \"Enter your bindings here\"\n };" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment