SolarWinds · Schema

Change

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
id integer
number integer
name string
description string
state string
priority string
change_type string
created_at string
View JSON Schema on GitHub

JSON Schema

solarwinds-change-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Change",
  "title": "Change",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": "abc123"
    },
    "number": {
      "type": "integer",
      "example": 10
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "state": {
      "type": "string",
      "example": "example_value"
    },
    "priority": {
      "type": "string",
      "example": "example_value"
    },
    "change_type": {
      "type": "string",
      "example": "example_value"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}