Autodesk · Schema

CreateBucketRequest

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
bucketKey string Unique bucket key (3-128 characters, lowercase letters, digits, hyphens, underscores).
policyKey string Retention policy for the bucket.
allow array
View JSON Schema on GitHub

JSON Schema

autodesk-createbucketrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateBucketRequest",
  "title": "CreateBucketRequest",
  "type": "object",
  "required": [
    "bucketKey",
    "policyKey"
  ],
  "properties": {
    "bucketKey": {
      "type": "string",
      "description": "Unique bucket key (3-128 characters, lowercase letters, digits, hyphens, underscores).",
      "pattern": "^[-_.a-z0-9]{3,128}$"
    },
    "policyKey": {
      "type": "string",
      "description": "Retention policy for the bucket.",
      "enum": [
        "transient",
        "temporary",
        "persistent"
      ]
    },
    "allow": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "authId": {
            "type": "string"
          },
          "access": {
            "type": "string",
            "enum": [
              "full",
              "read"
            ]
          }
        }
      }
    }
  }
}