{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-access-analyzer/refs/heads/main/json-schema/iam-access-analyzer-s3-bucket-acl-grant-configurations-list-schema.json", "title": "S3BucketAclGrantConfigurationsList", "description": "S3BucketAclGrantConfigurationsList schema from AWS IAM Access Analyzer API", "type": "array", "items": { "type": "object", "required": [ "permission", "grantee" ], "properties": { "permission": { "allOf": [ { "$ref": "#/components/schemas/AclPermission" }, { "description": "The permissions being granted." } ] }, "grantee": { "allOf": [ { "$ref": "#/components/schemas/AclGrantee" }, { "description": "The grantee to whom you\u2019re assigning access rights." } ] } }, "description": "A proposed access control list grant configuration for an Amazon S3 bucket. For more information, see How to Specify an ACL." } }