r2_managed_domain_response

APIs.ioEngineeringPlatform

Properties

Name Type Description
bucketId string Bucket ID
domain string Domain name of the bucket's r2.dev domain
enabled boolean Whether this bucket is publicly accessible at the r2.dev domain
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-r2-managed-domain-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/r2_managed_domain_response",
  "title": "r2_managed_domain_response",
  "example": {
    "bucketId": "0113a9e4549cf9b1ff1bf56e04da0cef",
    "domain": "pub-0113a9e4549cf9b1ff1bf56e04da0cef.r2.dev",
    "enabled": true
  },
  "properties": {
    "bucketId": {
      "description": "Bucket ID",
      "maxLength": 32,
      "type": "string"
    },
    "domain": {
      "description": "Domain name of the bucket's r2.dev domain",
      "type": "string"
    },
    "enabled": {
      "description": "Whether this bucket is publicly accessible at the r2.dev domain",
      "type": "boolean"
    }
  },
  "required": [
    "bucketId",
    "domain",
    "enabled"
  ],
  "type": "object"
}