Properties
| Name | Type | Description |
|---|---|---|
| consumers | array | |
| consumers_total_count | number | |
| created_on | string | |
| modified_on | string | |
| producers | array | |
| producers_total_count | number | |
| queue_id | string | |
| queue_name | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/mq_queue",
"title": "mq_queue",
"properties": {
"consumers": {
"items": {
"$ref": "#/components/schemas/mq_consumer"
},
"readOnly": true,
"type": "array"
},
"consumers_total_count": {
"readOnly": true,
"type": "number"
},
"created_on": {
"readOnly": true,
"type": "string"
},
"modified_on": {
"readOnly": true,
"type": "string"
},
"producers": {
"items": {
"$ref": "#/components/schemas/mq_producer"
},
"readOnly": true,
"type": "array"
},
"producers_total_count": {
"readOnly": true,
"type": "number"
},
"queue_id": {
"readOnly": true,
"type": "string"
},
"queue_name": {
"$ref": "#/components/schemas/mq_name"
}
},
"type": "object"
}