{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Queue", "type": "object", "properties": { "queue_id": { "type": "string", "description": "The unique identifier of the queue." }, "queue_name": { "type": "string", "description": "The name of the queue." }, "created_on": { "type": "string", "description": "When the queue was created." }, "modified_on": { "type": "string", "description": "When the queue was last modified." }, "producers_total_count": { "type": "integer", "description": "Number of producers attached." }, "consumers_total_count": { "type": "integer", "description": "Number of consumers attached." } } }