{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-structure/inspector-finding-details-error-list-structure.json", "name": "FindingDetailsErrorList", "description": "FindingDetailsErrorList schema", "type": "array", "items": { "type": "object", "required": [ "errorCode", "errorMessage", "findingArn" ], "properties": { "errorCode": { "allOf": [ { "$ref": "#/components/schemas/FindingDetailsErrorCode" }, { "description": "The error code." } ] }, "errorMessage": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The error message." } ] }, "findingArn": { "allOf": [ { "$ref": "#/components/schemas/FindingArn" }, { "description": "The finding ARN that returned an error." } ] } }, "description": "Details about an error encountered when trying to return vulnerability data for a finding." } }