{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-list-fleets-response-schema.json",
"title": "ListFleetsResponse",
"description": "ListFleetsResponse schema",
"type": "object",
"properties": {
"fleetSummaries": {
"allOf": [
{
"$ref": "#/components/schemas/fleetSummaries"
},
{
"description": " A list of information for each fleet. "
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/nextToken"
},
{
"description": " The token to retrieve the next set of results, or <code>null</code> if there are no more results. "
}
]
}
}
}