BatchGetFindingsResponse

BatchGetFindingsResponse schema from Amazon CodeGuru Security

AmazonSecuritySASTCode AnalysisDevSecOpsDeveloper Tools

Properties

Name Type Description
failedFindings object
findings object
View JSON Schema on GitHub

JSON Schema

amazon-codeguru-security-batch-get-findings-response-schema.json Raw ↑
{
  "$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 <code>scanName</code>, <code>findingId</code>, <code>errorCode</code> and error <code>message</code>."
        }
      ]
    },
    "findings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Findings"
        },
        {
          "description": " A list of all requested findings."
        }
      ]
    }
  },
  "required": [
    "failedFindings",
    "findings"
  ]
}