Cloudflare · Schema

Queue

AI GatewayAPI GatewayArtificial IntelligenceCDNCloudContainersDDoS ProtectionDNSEdgeEdge ComputingObject StoragePlatformReal-Time CommunicationSecurityServerlessWeb Performance

Properties

Name Type Description
queue_id string The unique identifier of the queue.
queue_name string The name of the queue.
created_on string When the queue was created.
modified_on string When the queue was last modified.
producers_total_count integer Number of producers attached.
consumers_total_count integer Number of consumers attached.
View JSON Schema on GitHub

JSON Schema

cloudflare-queues-queue-schema.json Raw ↑
{
  "$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."
    }
  }
}