{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-structure/openapi-duration-structure.json", "name": "Duration", "description": "Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.", "type": "object", "properties": { "Value": { "allOf": [ { "$ref": "#/components/schemas/DurationValue" }, { "description": " Integer to specify the value of a maintenance schedule duration. See the Developer Guide for more information." } ] }, "Unit": { "allOf": [ { "$ref": "#/components/schemas/TimeUnit" }, { "description": "Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the Developer Guide for more information." } ] } } }