Amazon MediaLive · Schema

RenewalSettings

The Renewal settings for Reservations

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
AutomaticRenewal object
RenewalCount object
View JSON Schema on GitHub

JSON Schema

medialive-api-renewal-settings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-renewal-settings-schema.json",
  "title": "RenewalSettings",
  "description": "The Renewal settings for Reservations",
  "type": "object",
  "properties": {
    "AutomaticRenewal": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReservationAutomaticRenewal"
        },
        {
          "xml": {
            "name": "automaticRenewal"
          },
          "description": "Automatic renewal status for the reservation"
        }
      ]
    },
    "RenewalCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin1"
        },
        {
          "xml": {
            "name": "renewalCount"
          },
          "description": "Count for the reservation renewal"
        }
      ]
    }
  }
}