{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-schema/amazon-mainframe-modernization-maintenance-schedule-schema.json",
"title": "MaintenanceSchedule",
"description": "The information about the maintenance schedule.",
"type": "object",
"properties": {
"endTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time the scheduled maintenance is to end."
}
]
},
"startTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time the scheduled maintenance is to start."
}
]
}
}
}