OpsGenie · Schema

CloseAlertRequest

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
user string Display name of the request owner.
source string Source of the close action.
note string Additional note to add when closing the alert.
View JSON Schema on GitHub

JSON Schema

opsgenie-closealertrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CloseAlertRequest",
  "title": "CloseAlertRequest",
  "type": "object",
  "properties": {
    "user": {
      "type": "string",
      "description": "Display name of the request owner."
    },
    "source": {
      "type": "string",
      "description": "Source of the close action."
    },
    "note": {
      "type": "string",
      "description": "Additional note to add when closing the alert."
    }
  }
}