{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-recurring-charge-schema.json", "title": "RecurringCharge", "description": "Contains the specific price and frequency of a recurring charges for a reserved Elasticsearch instance, or for a reserved Elasticsearch instance offering.", "type": "object", "properties": { "RecurringChargeAmount": { "allOf": [ { "$ref": "#/components/schemas/Double" }, { "description": "The monetary amount of the recurring charge." } ] }, "RecurringChargeFrequency": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The frequency of the recurring charge." } ] } } }