{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AppUpdateRequest", "title": "AppUpdateRequest", "type": "object", "properties": { "targetVersion": { "type": "string", "description": "Target version to update to", "example": "example_value" }, "allowPreviewVersion": { "type": "boolean", "description": "Whether to allow preview versions", "example": true }, "ignoreUpgradeWindow": { "type": "boolean", "description": "Whether to ignore the update window", "example": true }, "allowDependencyUpdate": { "type": "boolean", "description": "Whether to also update dependent apps", "example": true } } }