honeycomb · Schema
SLOCreateRequest
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The display name for the SLO. |
| description | string | An optional description for the SLO. |
| sli | object | |
| target_percentage | number | The target percentage for the SLO. |
| time_period_days | integer | The time period in days for the SLO. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SLOCreateRequest",
"title": "SLOCreateRequest",
"type": "object",
"required": [
"name",
"sli",
"target_percentage",
"time_period_days"
],
"properties": {
"name": {
"type": "string",
"description": "The display name for the SLO."
},
"description": {
"type": "string",
"description": "An optional description for the SLO."
},
"sli": {
"$ref": "#/components/schemas/QuerySpec"
},
"target_percentage": {
"type": "number",
"description": "The target percentage for the SLO.",
"minimum": 0,
"maximum": 100
},
"time_period_days": {
"type": "integer",
"description": "The time period in days for the SLO."
}
}
}