WSO2 · Schema

Alert Type

AlertType schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
id string The alert Id
name string The name of the alert.
View JSON Schema on GitHub

JSON Schema

admin-api-alert-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/admin-api-alert-type-schema.json",
  "title": "Alert Type",
  "description": "AlertType schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The alert Id",
      "example": "1"
    },
    "name": {
      "type": "string",
      "description": "The name of the alert.",
      "example": "AbnormalResponseTime"
    }
  }
}