OpsGenie · Schema

AddNoteRequest

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

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

JSON Schema

opsgenie-addnoterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddNoteRequest",
  "title": "AddNoteRequest",
  "type": "object",
  "required": [
    "note"
  ],
  "properties": {
    "note": {
      "type": "string",
      "maxLength": 25000,
      "description": "The note text to add to the alert."
    },
    "user": {
      "type": "string",
      "description": "Display name of the request owner."
    },
    "source": {
      "type": "string",
      "description": "Source of the action."
    }
  }
}