{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-security/refs/heads/main/json-schema/amazon-codeguru-security-batch-get-findings-response-schema.json", "title": "BatchGetFindingsResponse", "description": "BatchGetFindingsResponse schema from Amazon CodeGuru Security", "type": "object", "properties": { "failedFindings": { "allOf": [ { "$ref": "#/components/schemas/BatchGetFindingsErrors" }, { "description": "A list of errors for individual findings which were not fetched. Each BatchGetFindingsError contains the scanName, findingId, errorCode and error message." } ] }, "findings": { "allOf": [ { "$ref": "#/components/schemas/Findings" }, { "description": " A list of all requested findings." } ] } }, "required": [ "failedFindings", "findings" ] }