BigPanda · Schema

IncidentsResponse

List of incidents for an environment.

IncidentsMonitoringPlatform

Properties

Name Type Description
incidents array Array of incidents.
View JSON Schema on GitHub

JSON Schema

bigpanda-incidents-response-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IncidentsResponse",
  "type": "object",
  "description": "List of incidents for an environment.",
  "properties": {
    "incidents": {
      "type": "array",
      "description": "Array of incidents.",
      "items": {
        "$ref": "#/components/schemas/Incident"
      }
    }
  }
}