{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/cloudflare-kv/json-schema/workers-kv_namespace.json", "title": "Namespace", "properties": { "id": { "$ref": "#/components/schemas/workers-kv_namespace_identifier" }, "supports_url_encoding": { "description": "True if keys written on the URL will be URL-decoded before storing. For example, if set to \"true\", a key written on the URL as \"%3F\" will be stored as \"?\".", "example": true, "readOnly": true, "type": "boolean", "x-auditable": true }, "title": { "$ref": "#/components/schemas/workers-kv_namespace_title" } }, "required": [ "id", "title" ], "type": "object" }