honeycomb · Schema

BurnAlertUpdateRequest

Properties

Name Type Description
exhaustion_minutes integer
budget_rate_window_minutes integer
budget_rate_decrease_percent number
recipients array
View JSON Schema on GitHub

JSON Schema

honeycomb-burnalertupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BurnAlertUpdateRequest",
  "title": "BurnAlertUpdateRequest",
  "type": "object",
  "properties": {
    "exhaustion_minutes": {
      "type": "integer"
    },
    "budget_rate_window_minutes": {
      "type": "integer"
    },
    "budget_rate_decrease_percent": {
      "type": "number"
    },
    "recipients": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RecipientRef"
      }
    }
  }
}