{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-schema/amazon-codeguru-profiler-list-findings-reports-response-schema.json", "title": "ListFindingsReportsResponse", "description": "The structure representing the ListFindingsReportsResponse.", "type": "object", "properties": { "findingsReportSummaries": { "allOf": [ { "$ref": "#/components/schemas/FindingsReportSummaries" }, { "description": "The list of analysis results summaries." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/PaginationToken" }, { "description": "The nextToken value to include in a future ListFindingsReports request. When the results of a ListFindingsReports request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return." } ] } }, "required": [ "findingsReportSummaries" ] }