{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-detective/refs/heads/main/json-schema/amazon-detective-list-graphs-response-schema.json",
"title": "ListGraphsResponse",
"description": "Response from listing behavior graphs",
"type": "object",
"properties": {
"GraphList": {
"type": "array",
"description": "A list of behavior graphs that the account is an administrator account of.",
"items": {
"$ref": "#/components/schemas/Graph"
}
},
"NextToken": {
"type": "string",
"description": "If there are more behavior graphs remaining in the results, then this is the pagination token to use."
}
}
}