Better Stack · JSON Structure

Better Stack Policy Create Request Structure

Request body for creating an escalation policy.

Type: object Properties: 3 Required: 1
IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats

PolicyCreateRequest is a JSON Structure definition published by Better Stack, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name repeat_count repeat_delay

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-create-request-structure.json",
  "name": "PolicyCreateRequest",
  "description": "Request body for creating an escalation policy.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Policy name.",
      "example": "Default On-Call"
    },
    "repeat_count": {
      "type": "int32",
      "description": "Number of repeat cycles.",
      "example": 3
    },
    "repeat_delay": {
      "type": "int32",
      "description": "Delay between cycles in seconds.",
      "example": 300
    }
  },
  "required": [
    "name"
  ]
}