{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SchedulePlan", "title": "SchedulePlan", "type": "object", "properties": { "earliestAt": { "format": "date-time", "type": "string", "description": "This is the ISO 8601 date-time string of the earliest time the call can be scheduled." }, "latestAt": { "format": "date-time", "type": "string", "description": "This is the ISO 8601 date-time string of the latest time the call can be scheduled." } }, "required": [ "earliestAt" ] }