LocationList

LocationList schema from AWS IAM Access Analyzer API

Access ControlComplianceIAMPolicy ManagementSecurity
View JSON Schema on GitHub

JSON Schema

iam-access-analyzer-location-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-location-list-schema.json",
  "title": "LocationList",
  "description": "LocationList schema from AWS IAM Access Analyzer API",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "path",
      "span"
    ],
    "properties": {
      "path": {
        "allOf": [
          {
            "$ref": "#/components/schemas/PathElementList"
          },
          {
            "description": "A path in a policy, represented as a sequence of path elements."
          }
        ]
      },
      "span": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Span"
          },
          {
            "description": "A span in a policy."
          }
        ]
      }
    },
    "description": "A location in a policy that is represented as a path through the JSON representation and a corresponding span."
  }
}