{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-time-range-structure.json", "name": "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.

" } ] } } }