BigPanda · Schema

AlertResponse

Response after ingesting an alert.

IncidentsMonitoringPlatform

Properties

Name Type Description
_id string Internal alert ID.
status string Ingestion status.
View JSON Schema on GitHub

JSON Schema

bigpanda-alert-response-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AlertResponse",
  "type": "object",
  "description": "Response after ingesting an alert.",
  "properties": {
    "_id": {
      "type": "string",
      "description": "Internal alert ID.",
      "example": "alert-abc123"
    },
    "status": {
      "type": "string",
      "description": "Ingestion status.",
      "example": "ok"
    }
  }
}