Order Table Extraction
Product ID
Qty
Unit price
Manufacturar
Shipping Time
[
{
"name": "products",
"type": "object",
"description": "All products from the table",
"isArray": true,
"elements": [
{
"name": "product_id",
"type": "string",
"description": "The id of that product. aka product number",
"isArray": false
},
{
"name": "quantity",
"type": "number",
"description": "Quantity of how many units. Aka Qty",
"isArray": false
},
{
"name": "unit_price",
"type": "number",
"description": "Unit price of that product in dollars",
"isArray": false
},
{
"name": "shipping_time",
"type": "string",
"description": "Time it takes to ship this product. (In days)",
"isArray": false
}
]
}
]Last updated