SolarWinds · Schema

ContactList

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
contacts array
View JSON Schema on GitHub

JSON Schema

solarwinds-contactlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactList",
  "title": "ContactList",
  "type": "object",
  "properties": {
    "contacts": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "notification_targets": {
            "type": "object"
          }
        }
      },
      "example": []
    }
  }
}