{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LogisticsInfoSLA", "title": "LogisticsInfoSLA", "type": "object", "properties": { "id": { "type": "string", "nullable": true }, "pickupPointId": { "type": "string", "nullable": true }, "deliveryChannel": { "type": "string", "nullable": true }, "price": { "type": "integer", "format": "int32" }, "shippingEstimate": { "type": "string", "nullable": true }, "lockTtl": { "type": "string", "nullable": true }, "deliveryWindows": { "type": "array", "items": { "$ref": "#/components/schemas/LogisticsInfoDeliveryWindow" }, "nullable": true }, "availableDeliveryWindows": { "type": "array", "items": { "$ref": "#/components/schemas/LogisticsInfoDeliveryWindow" }, "nullable": true } }, "additionalProperties": false }