{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-auto-tune-maintenance-schedule-schema.json", "title": "AutoTuneMaintenanceSchedule", "description": "Specifies Auto-Tune maitenance schedule. See the Developer Guide for more information.", "type": "object", "properties": { "StartAt": { "allOf": [ { "$ref": "#/components/schemas/StartAt" }, { "description": "Specifies timestamp at which Auto-Tune maintenance schedule start. " } ] }, "Duration": { "allOf": [ { "$ref": "#/components/schemas/Duration" }, { "description": "Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information." } ] }, "CronExpressionForRecurrence": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information." } ] } } }