{ "$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-associate-client-device-with-core-device-entry-list-schema.json", "title": "AssociateClientDeviceWithCoreDeviceEntryList", "description": "AssociateClientDeviceWithCoreDeviceEntryList schema", "type": "array", "items": { "type": "object", "required": [ "thingName" ], "properties": { "thingName": { "allOf": [ { "$ref": "#/components/schemas/IoTThingName" }, { "description": "The name of the IoT thing that represents the client device to associate." } ] } }, "description": "Contains a request to associate a client device with a core device. The BatchAssociateClientDeviceWithCoreDevice operation consumes a list of these requests." } }