{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-schema/iot-greengrass-list-core-devices-response-schema.json",
"title": "ListCoreDevicesResponse",
"description": "ListCoreDevicesResponse schema",
"type": "object",
"properties": {
"coreDevices": {
"allOf": [
{
"$ref": "#/components/schemas/CoreDevicesList"
},
{
"description": "A list that summarizes each core device."
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextTokenString"
},
{
"description": "The token for the next set of results, or null if there are no additional results."
}
]
}
}
}