{
"$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": "<p>The start time of the time range.</p> <note> <p>Specify null to leave the start time open-ended.</p> </note>"
}
]
},
"end": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "<p>The end time of the time range.</p> <note> <p>Specify null to leave the end time open-ended.</p> </note>"
}
]
}
}
}