honeycomb · Schema
BurnAlertUpdateRequest
Properties
| Name | Type | Description |
|---|---|---|
| exhaustion_minutes | integer | |
| budget_rate_window_minutes | integer | |
| budget_rate_decrease_percent | number | |
| recipients | array |
JSON Schema
{
"$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"
}
}
}
}