{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-greengrass-v2-schema.json",
"title": "GreengrassV2",
"description": "Contains details for a gateway that runs on IoT Greengrass V2. To create a gateway that runs on IoT Greengrass V2, you must deploy the IoT SiteWise Edge component to your gateway device. Your Greengrass device role must use the AWSIoTSiteWiseEdgeAccess policy. For more information, see Using IoT SiteWise at the edge in the IoT SiteWise User Guide.",
"type": "object",
"properties": {
"coreDeviceThingName": {
"allOf": [
{
"$ref": "#/components/schemas/CoreDeviceThingName"
},
{
"description": "The name of the IoT thing for your IoT Greengrass V2 core device."
}
]
}
},
"required": [
"coreDeviceThingName"
]
}