workers_kv_namespace_binding

APIs.ioEngineeringPlatform

Properties

Name Type Description
name object
namespace_id object
type string The class of resource that the binding provides.
View JSON Schema on GitHub

JSON Schema

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