{ "$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-update-gateway-capability-configuration-response-schema.json", "title": "UpdateGatewayCapabilityConfigurationResponse", "description": "UpdateGatewayCapabilityConfigurationResponse schema", "type": "object", "properties": { "capabilityNamespace": { "allOf": [ { "$ref": "#/components/schemas/CapabilityNamespace" }, { "description": "The namespace of the gateway capability." } ] }, "capabilitySyncStatus": { "allOf": [ { "$ref": "#/components/schemas/CapabilitySyncStatus" }, { "description": "

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

After you update a capability configuration, its sync status is OUT_OF_SYNC until the gateway receives and applies or rejects the updated configuration.

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