Acceldata · Schema

AlertList

Paginated list of alerts

AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservability

Properties

Name Type Description
data array
total integer Total alert count
page integer
limit integer
View JSON Schema on GitHub

JSON Schema

adoc-api-alert-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://acceldata.io/schemas/alert-list.json",
  "title": "AlertList",
  "type": "object",
  "description": "Paginated list of alerts",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "alert.json"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total alert count"
    },
    "page": {
      "type": "integer"
    },
    "limit": {
      "type": "integer"
    }
  }
}