{ "$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-schema.json", "title": "Location", "description": "A location in a policy that is represented as a path through the JSON representation and a corresponding span.", "type": "object", "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." } ] } }, "required": [ "path", "span" ] }