Chick-fil-A · Schema

S3Bucket

An S3 bucket record, flagged if globally accessible.

Fast FoodRestaurantFood and BeverageLoyaltyMobile OrderingCatering

Properties

Name Type Description
BucketName string
Global boolean Whether the bucket is globally (publicly) accessible.
AccountAlias string
View JSON Schema on GitHub

JSON Schema

bovine-s3-bucket-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "S3Bucket",
  "description": "An S3 bucket record, flagged if globally accessible.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-schema/bovine-s3-bucket-schema.json",
  "type": "object",
  "properties": {
    "BucketName": {
      "type": "string",
      "example": "my-app-logs-bucket"
    },
    "Global": {
      "type": "boolean",
      "description": "Whether the bucket is globally (publicly) accessible.",
      "example": false
    },
    "AccountAlias": {
      "type": "string",
      "example": "prod-platform"
    }
  }
}