workers-kv_namespace

APIs.ioEngineeringPlatform

Properties

Name Type Description
id object
supports_url_encoding boolean 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 "?".
title object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-workers-kv-namespace-schema.json Raw ↑
{
  "$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"
}