SolarWinds · Schema

ServiceRequestCreate

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
service_request object
View JSON Schema on GitHub

JSON Schema

solarwinds-servicerequestcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceRequestCreate",
  "title": "ServiceRequestCreate",
  "type": "object",
  "required": [
    "service_request"
  ],
  "properties": {
    "service_request": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "priority": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  }
}