SolarWinds · Schema

SavedSearch

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
id integer
name string
query string
group object
View JSON Schema on GitHub

JSON Schema

solarwinds-savedsearch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SavedSearch",
  "title": "SavedSearch",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "query": {
      "type": "string",
      "example": "example_value"
    },
    "group": {
      "$ref": "#/components/schemas/Group"
    }
  }
}