{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PurchaseOrderCreate", "title": "PurchaseOrderCreate", "type": "object", "properties": { "orderDate": { "type": "string", "format": "date", "example": "2026-01-15" }, "vendorId": { "type": "string", "format": "uuid", "example": "500123" }, "vendorNumber": { "type": "string", "maxLength": 20, "example": "example_value" }, "currencyCode": { "type": "string", "maxLength": 10, "example": "example_value" }, "pricesIncludeTax": { "type": "boolean", "example": true }, "requestedReceiptDate": { "type": "string", "format": "date", "example": "2026-01-15" } } }