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