OpsGenie · Schema

AddResponderRequest

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
responder object
user string Display name of the request owner.
source string Source of the action.
note string Additional note to add with the responder.
View JSON Schema on GitHub

JSON Schema

opsgenie-addresponderrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddResponderRequest",
  "title": "AddResponderRequest",
  "type": "object",
  "required": [
    "responder"
  ],
  "properties": {
    "responder": {
      "$ref": "#/components/schemas/Responder"
    },
    "user": {
      "type": "string",
      "description": "Display name of the request owner."
    },
    "source": {
      "type": "string",
      "description": "Source of the action."
    },
    "note": {
      "type": "string",
      "description": "Additional note to add with the responder."
    }
  }
}