{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-time-range-schema.json", "title": "TimeRange", "description": "Information about a time range.", "type": "object", "properties": { "start": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "

The start time of the time range.

Specify null to leave the start time open-ended.

" } ] }, "end": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "

The end time of the time range.

Specify null to leave the end time open-ended.

" } ] } } }