SolarWinds · Schema

Incident

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
id integer Unique incident identifier
number integer Human-readable incident number
name string Incident title
description string Incident description
state string Current state
priority string Priority level
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

solarwinds-service-desk-incident-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Incident",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique incident identifier"
    },
    "number": {
      "type": "integer",
      "description": "Human-readable incident number"
    },
    "name": {
      "type": "string",
      "description": "Incident title"
    },
    "description": {
      "type": "string",
      "description": "Incident description"
    },
    "state": {
      "type": "string",
      "description": "Current state"
    },
    "priority": {
      "type": "string",
      "description": "Priority level"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    }
  }
}