{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeliverySlaPerType", "title": "DeliverySlaPerType", "required": [ "TypeName", "Price", "EstimatedTimeSpanToDelivery" ], "type": "object", "properties": { "TypeName": { "type": "string" }, "Price": { "type": "number" }, "EstimatedTimeSpanToDelivery": { "type": "string" } }, "example": { "TypeName": "Econ\u00f4mica", "Price": 4.11, "EstimatedTimeSpanToDelivery": "00:00:00" } }