{
"$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-list-scans-response-schema.json",
"title": "ListScansResponse",
"description": "ListScansResponse schema from Amazon CodeGuru Security",
"type": "object",
"properties": {
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "A pagination token. You can use this in future calls to <code>ListScans</code> to continue listing results after the current page."
}
]
},
"summaries": {
"allOf": [
{
"$ref": "#/components/schemas/ScanSummaries"
},
{
"description": "A list of <code>ScanSummary</code> objects with information about all scans in an account."
}
]
}
}
}