Chick-fil-A · JSON Structure

Bovine Iam User Detail Structure

Detailed IAM user record including policies and access keys.

Type: object Properties: 2
Fast FoodRestaurantsFood & BeverageLoyaltyMobile OrderingCatering

IamUserDetail is a JSON Structure definition published by Chick-fil-A, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Account User

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/chickfila/refs/heads/main/json-structure/bovine-iam-user-detail-structure.json",
  "name": "IamUserDetail",
  "description": "Detailed IAM user record including policies and access keys.",
  "type": "object",
  "properties": {
    "Account": {
      "type": "object",
      "properties": {
        "accountNum": {
          "type": "string",
          "example": "123456789012"
        }
      }
    },
    "User": {
      "type": "object",
      "properties": {
        "Username": {
          "type": "string",
          "example": "jsmith"
        },
        "ManagedPolicies": {
          "type": "array",
          "description": "Attached managed policies.",
          "items": {
            "type": "object",
            "properties": {
              "ManagedPolicy": {
                "type": "string",
                "example": "AdministratorAccess"
              }
            }
          }
        },
        "AccessKeys": {
          "type": "array",
          "description": "Access keys associated with the user.",
          "items": {
            "type": "object",
            "properties": {
              "AccessKeyId": {
                "type": "string",
                "example": "AKIAEXAMPLE1234567"
              },
              "Status": {
                "type": "string",
                "example": "Active"
              }
            }
          }
        }
      }
    }
  }
}