27 lines
669 B
JSON

{
"type": "object",
"properties": {
"orderDetails": {
"type": "object",
"properties": {
"productSelection": {
"type": "string",
"title": "Product Selection"
},
"quantity": {
"type": "integer",
"title": "Quantity"
},
"customerName": {
"type": "string",
"title": "Customer Name"
},
"shippingAddress": {
"type": "string",
"title": "Shipping Address"
}
},
"required": ["productSelection", "quantity", "customerName", "shippingAddress"]
}
}
}