mq_detail

APIs.ioEngineeringPlatform

Properties

Name Type Description
queue string Queue ID that will receive notifications based on the configured rules
rules array Array of rules to drive notifications
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-mq-detail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/mq_detail",
  "title": "mq_detail",
  "properties": {
    "queue": {
      "description": "Queue ID that will receive notifications based on the configured rules",
      "example": "98fa6c35-dead-beef-a42b-8d12196e0000",
      "type": "string"
    },
    "rules": {
      "description": "Array of rules to drive notifications",
      "items": {
        "$ref": "#/components/schemas/mq_rule"
      },
      "type": "array"
    }
  },
  "required": [
    "queue",
    "rules"
  ],
  "type": "object"
}