Merge · Schema

Issue

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
status object Status of the issue.
error_description string
end_user object
first_incident_time stringnull
last_incident_time stringnull
is_muted boolean
error_details array
View JSON Schema on GitHub

JSON Schema

merge-issue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Issue",
  "title": "Issue",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "status": {
      "$ref": "#/components/schemas/IssueStatusEnum",
      "description": "Status of the issue."
    },
    "error_description": {
      "type": "string"
    },
    "end_user": {
      "type": "object",
      "additionalProperties": {
        "description": "Any type"
      }
    },
    "first_incident_time": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "last_incident_time": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "is_muted": {
      "type": "boolean"
    },
    "error_details": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "error_description"
  ]
}