{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/workers_kv_namespace_binding", "title": "workers_kv_namespace_binding", "properties": { "name": { "$ref": "#/components/schemas/workers_binding_name" }, "namespace_id": { "$ref": "#/components/schemas/workers_namespace_identifier" }, "type": { "description": "The class of resource that the binding provides.", "enum": [ "kv_namespace" ], "example": "kv_namespace", "type": "string" } }, "required": [ "name", "type", "namespace_id" ], "type": "object" }