Amazon Inspector · JSON Structure

Inspector Code Snippet Result List Structure

CodeSnippetResultList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

CodeSnippetResultList 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-code-snippet-result-list-structure.json",
  "name": "CodeSnippetResultList",
  "description": "CodeSnippetResultList schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "codeSnippet": {
        "allOf": [
          {
            "$ref": "#/components/schemas/CodeLineList"
          },
          {
            "description": "Contains information on the retrieved code snippet."
          }
        ]
      },
      "endLine": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Integer"
          },
          {
            "description": "The line number of the last line of a code snippet."
          }
        ]
      },
      "findingArn": {
        "allOf": [
          {
            "$ref": "#/components/schemas/FindingArn"
          },
          {
            "description": "The ARN of a finding that the code snippet is associated with."
          }
        ]
      },
      "startLine": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Integer"
          },
          {
            "description": "The line number of the first line of a code snippet."
          }
        ]
      },
      "suggestedFixes": {
        "allOf": [
          {
            "$ref": "#/components/schemas/SuggestedFixes"
          },
          {
            "description": "Details of a suggested code fix."
          }
        ]
      }
    },
    "description": "Contains information on a code snippet retrieved by Amazon Inspector from a code vulnerability finding."
  }
}