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 "?".
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/workers-kv_namespace",
"title": "workers-kv_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"
},
"title": {
"$ref": "#/components/schemas/workers-kv_namespace_title"
}
},
"required": [
"id",
"title"
],
"type": "object"
}