{ "$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-core-device-schema.json", "title": "CoreDevice", "description": "Contains information about a Greengrass core device, which is an IoT thing that runs the IoT Greengrass Core software.", "type": "object", "properties": { "coreDeviceThingName": { "allOf": [ { "$ref": "#/components/schemas/CoreDeviceThingName" }, { "description": "The name of the core device. This is also the name of the IoT thing." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/CoreDeviceStatus" }, { "description": "

The status of the core device. Core devices can have the following statuses:

" } ] }, "lastStatusUpdateTimestamp": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The time at which the core device's status last updated, expressed in ISO 8601 format." } ] } } }