FindingSourceList

FindingSourceList schema from AWS IAM Access Analyzer API

Access ControlComplianceIAMPolicy ManagementSecurity
View JSON Schema on GitHub

JSON Schema

iam-access-analyzer-finding-source-list-schema.json Raw ↑
{
  "$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-finding-source-list-schema.json",
  "title": "FindingSourceList",
  "description": "FindingSourceList schema from AWS IAM Access Analyzer API",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "type"
    ],
    "properties": {
      "type": {
        "allOf": [
          {
            "$ref": "#/components/schemas/FindingSourceType"
          },
          {
            "description": "Indicates the type of access that generated the finding."
          }
        ]
      },
      "detail": {
        "allOf": [
          {
            "$ref": "#/components/schemas/FindingSourceDetail"
          },
          {
            "description": "Includes details about how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings."
          }
        ]
      }
    },
    "description": "The source of the finding. This indicates how the access that generated the finding is granted. It is populated for Amazon S3 bucket findings."
  }
}