{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PutDeviceSettingsRequest", "title": "PutDeviceSettingsRequest", "type": "object", "required": [ "customizations", "customEnabled" ], "properties": { "customizations": { "$ref": "#/components/schemas/CustomizationDeviceLevelObjectDevice", "description": "Indicates the customization object of the device settings." }, "customEnabled": { "type": "boolean", "example": true, "description": "Indicates if customization is allowed at a device level. If true, customized at a device level. If false, not customized; uses customer-level configuration." } } }