honeycomb · Schema

SLOUpdateRequest

Properties

Name Type Description
name string An updated display name for the SLO.
description string An updated description for the SLO.
sli object
target_percentage number
time_period_days integer
View JSON Schema on GitHub

JSON Schema

honeycomb-sloupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SLOUpdateRequest",
  "title": "SLOUpdateRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "An updated display name for the SLO."
    },
    "description": {
      "type": "string",
      "description": "An updated description for the SLO."
    },
    "sli": {
      "$ref": "#/components/schemas/QuerySpec"
    },
    "target_percentage": {
      "type": "number",
      "minimum": 0,
      "maximum": 100
    },
    "time_period_days": {
      "type": "integer"
    }
  }
}