{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/workers_r2_binding", "title": "workers_r2_binding", "properties": { "bucket_name": { "description": "R2 bucket to bind to", "example": "my-r2-bucket", "type": "string" }, "name": { "$ref": "#/components/schemas/workers_binding_name" }, "type": { "description": "The class of resource that the binding provides.", "enum": [ "r2_bucket" ], "example": "r2_bucket", "type": "string" } }, "required": [ "name", "type", "bucket_name" ], "type": "object" }