BigPanda · Schema

ChangeResponse

Response after ingesting a change event.

IncidentsMonitoringPlatform

Properties

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

JSON Schema

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