Better Stack · JSON Structure

Better Stack Policy Step Structure

A step in an escalation policy.

Type: object Properties: 2
IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats

PolicyStep is a JSON Structure definition published by Better Stack, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type attributes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-structure/better-stack-policy-step-structure.json",
  "name": "PolicyStep",
  "description": "A step in an escalation policy.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Step resource type.",
      "example": "step"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "step_type": {
          "type": "string",
          "description": "Type of notification step.",
          "enum": [
            "notification",
            "wait"
          ],
          "example": "notification"
        },
        "wait_before": {
          "type": "int32",
          "description": "Seconds to wait before this step.",
          "example": 0
        }
      }
    }
  }
}