Acceldata · JSON Structure

Adoc Api Alert Structure

A data quality or pipeline monitoring alert

Type: object Properties: 10
AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservability

Adoc Api Alert Structure is a JSON Structure definition published by Acceldata, describing 10 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

id title severity status ruleId datasetId datasetName metricValue threshold triggeredAt

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://acceldata.io/structures/adoc-api-alert.json",
  "title": "Alert",
  "type": "object",
  "description": "A data quality or pipeline monitoring alert",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique alert identifier"
    },
    "title": {
      "type": "string",
      "description": "Alert title"
    },
    "severity": {
      "type": "string",
      "description": "Alert severity level",
      "enum": [
        "critical",
        "high",
        "medium",
        "low"
      ]
    },
    "status": {
      "type": "string",
      "description": "Current alert status",
      "enum": [
        "open",
        "resolved",
        "acknowledged"
      ]
    },
    "ruleId": {
      "type": "string",
      "description": "Data quality rule that triggered this alert"
    },
    "datasetId": {
      "type": "string",
      "description": "Dataset associated with the alert"
    },
    "datasetName": {
      "type": "string",
      "description": "Dataset name"
    },
    "metricValue": {
      "type": "number",
      "description": "Actual metric value that triggered the alert"
    },
    "threshold": {
      "type": "number",
      "description": "Threshold that was exceeded"
    },
    "triggeredAt": {
      "type": "string",
      "description": "When the alert was triggered"
    }
  }
}