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