OpsGenie · Schema

UpdateServiceRequest

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
name string Updated service name.
description string Updated description.
visibility string Updated visibility.
tags array Updated tags.
View JSON Schema on GitHub

JSON Schema

opsgenie-updateservicerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateServiceRequest",
  "title": "UpdateServiceRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated service name."
    },
    "description": {
      "type": "string",
      "description": "Updated description."
    },
    "visibility": {
      "type": "string",
      "enum": [
        "TEAM_MEMBERS",
        "OPSGENIE_USERS"
      ],
      "description": "Updated visibility."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Updated tags."
    }
  }
}