{ "$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-describe-gateway-capability-configuration-response-schema.json", "title": "DescribeGatewayCapabilityConfigurationResponse", "description": "DescribeGatewayCapabilityConfigurationResponse schema", "type": "object", "properties": { "gatewayId": { "allOf": [ { "$ref": "#/components/schemas/ID" }, { "description": "The ID of the gateway that defines the capability configuration." } ] }, "capabilityNamespace": { "allOf": [ { "$ref": "#/components/schemas/CapabilityNamespace" }, { "description": "The namespace of the gateway capability." } ] }, "capabilityConfiguration": { "allOf": [ { "$ref": "#/components/schemas/CapabilityConfiguration" }, { "description": "The JSON document that defines the gateway capability's configuration. For more information, see Configuring data sources (CLI) in the IoT SiteWise User Guide." } ] }, "capabilitySyncStatus": { "allOf": [ { "$ref": "#/components/schemas/CapabilitySyncStatus" }, { "description": "

The synchronization status of the capability configuration. The sync status can be one of the following:

" } ] } }, "required": [ "gatewayId", "capabilityNamespace", "capabilityConfiguration", "capabilitySyncStatus" ] }