Cloudflare · Schema

DurableObjectNamespace

AI GatewayAPI GatewayArtificial IntelligenceCDNCloudContainersDDoS ProtectionDNSEdgeEdge ComputingObject StoragePlatformReal-Time CommunicationSecurityServerlessWeb Performance

Properties

Name Type Description
id string The unique identifier of the namespace.
name string The name of the namespace.
script string The Worker script associated with the namespace.
class string The Durable Object class name.
View JSON Schema on GitHub

JSON Schema

cloudflare-durable-objects-durable-object-namespace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DurableObjectNamespace",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the namespace."
    },
    "name": {
      "type": "string",
      "description": "The name of the namespace."
    },
    "script": {
      "type": "string",
      "description": "The Worker script associated with the namespace."
    },
    "class": {
      "type": "string",
      "description": "The Durable Object class name."
    }
  }
}