{ "$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" } } } } } } } }