{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-get-findings-request-schema.json", "title": "GetFindingsRequest", "description": "GetFindingsRequest schema from Amazon Macie API", "type": "object", "properties": { "findingIds": { "allOf": [ { "$ref": "#/components/schemas/__listOf__string" }, { "description": "An array of strings that lists the unique identifiers for the findings to retrieve. You can specify as many as 50 unique identifiers in this array." } ] }, "sortCriteria": { "allOf": [ { "$ref": "#/components/schemas/SortCriteria" }, { "description": "The criteria for sorting the results of the request." } ] } }, "required": [ "findingIds" ] }