{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DateRange", "title": "Date Range", "type": "object", "properties": { "from": { "type": "object", "properties": { "date": { "type": "string", "format": "date" }, "timezone": { "type": "string" } }, "title": "Date Value", "description": "Value Object representing a Date." }, "to": { "type": "object", "properties": { "date": { "type": "string", "format": "date" }, "timezone": { "type": "string" } }, "title": "Date Value", "description": "Value Object representing a Date." } }, "description": "Representation of a range of date objects.", "x-internal": false }