Amazon Inspector · JSON Structure

Inspector Finding Details Error List Structure

FindingDetailsErrorList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

FindingDetailsErrorList is a JSON Structure definition published by Amazon Inspector. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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."
  }
}