OpsGenie · Schema

ListAttachmentsResponse

AlertsIncident ManagementMonitoringOn-CallOperations

Properties

Name Type Description
data array
took number Time taken to process the request in seconds.
requestId string Unique identifier for the request.
View JSON Schema on GitHub

JSON Schema

opsgenie-listattachmentsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListAttachmentsResponse",
  "title": "ListAttachmentsResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the attachment file."
          },
          "id": {
            "type": "string",
            "description": "Unique identifier of the attachment."
          }
        }
      }
    },
    "took": {
      "type": "number",
      "description": "Time taken to process the request in seconds."
    },
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the request."
    }
  }
}