Oracle Enterprise Manager · Schema
BlackoutSchedule
Schedule definition for a blackout.
Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle
Properties
| Name | Type | Description |
|---|---|---|
| startTime | string | Scheduled start time of the blackout. |
| endTime | string | Scheduled end time of the blackout. |
| duration | integer | Duration in minutes if no explicit end time is specified. |
| timezone | string | Time zone for the schedule. |
| frequency | string | Recurrence frequency for repeating blackouts. |
| repeatInterval | integer | Interval for repeating blackouts (e.g., every 2 weeks). |
| daysOfWeek | array | Days of the week for weekly recurrence. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "BlackoutSchedule",
"type": "object",
"description": "Schedule definition for a blackout.",
"properties": {
"startTime": {
"type": "string",
"description": "Scheduled start time of the blackout."
},
"endTime": {
"type": "string",
"description": "Scheduled end time of the blackout."
},
"duration": {
"type": "integer",
"description": "Duration in minutes if no explicit end time is specified."
},
"timezone": {
"type": "string",
"description": "Time zone for the schedule."
},
"frequency": {
"type": "string",
"description": "Recurrence frequency for repeating blackouts."
},
"repeatInterval": {
"type": "integer",
"description": "Interval for repeating blackouts (e.g., every 2 weeks)."
},
"daysOfWeek": {
"type": "array",
"description": "Days of the week for weekly recurrence."
}
}
}