AppUpdateRequest

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Properties

Name Type Description
targetVersion string Target version to update to
allowPreviewVersion boolean Whether to allow preview versions
ignoreUpgradeWindow boolean Whether to ignore the update window
allowDependencyUpdate boolean Whether to also update dependent apps
View JSON Schema on GitHub

JSON Schema

navision-appupdaterequest-schema.json Raw ↑
{
  "$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
    }
  }
}