{
  "description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.",
  "properties": {
    "periodSeconds": {
      "description": "periodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    },
    "type": {
      "description": "type is used to specify the scaling policy.",
      "type": [
        "string",
        "null"
      ]
    },
    "value": {
      "description": "value contains the amount of change which is permitted by the policy. It must be greater than zero",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    }
  },
  "required": [
    "type",
    "value",
    "periodSeconds"
  ],
  "type": "object",
  "additionalProperties": false,
  "$schema": "http://json-schema.org/schema#"
}