workers_r2_binding

APIs.ioEngineeringPlatform

Properties

Name Type Description
bucket_name string R2 bucket to bind to
name object
type string The class of resource that the binding provides.
View JSON Schema on GitHub

JSON Schema

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