{ "$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" }