{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-post_buy_more-schema.json", "title": "Buy More Products Request Schema", "type": "object", "additionalProperties": false, "properties": { "warehouse": { "type": "integer" }, "quantity": { "type": "integer" }, "unit_price": { "type": "number" }, "discount_amount": { "type": "number" }, "po_id": { "type": "string" } }, "required": [ "warehouse", "quantity" ] }