The criteria used to sort.
{ "$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-sort-criteria-schema.json", "title": "SortCriteria", "description": "The criteria used to sort.", "type": "object", "properties": { "attributeName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The name of the attribute to sort on." } ] }, "orderBy": { "allOf": [ { "$ref": "#/components/schemas/OrderBy" }, { "description": "The sort order, ascending or descending." } ] } } }