ExtensionUpload

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Properties

Name Type Description
systemId string
schedule string When to schedule the installation
schemaSyncMode string Schema synchronization mode
status string
View JSON Schema on GitHub

JSON Schema

navision-extensionupload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExtensionUpload",
  "title": "ExtensionUpload",
  "type": "object",
  "properties": {
    "systemId": {
      "type": "string",
      "format": "uuid",
      "example": "500123"
    },
    "schedule": {
      "type": "string",
      "description": "When to schedule the installation",
      "enum": [
        "Current version",
        "Next minor version",
        "Next major version"
      ],
      "example": "Current version"
    },
    "schemaSyncMode": {
      "type": "string",
      "description": "Schema synchronization mode",
      "enum": [
        "Add",
        "Force Sync"
      ],
      "example": "Add"
    },
    "status": {
      "type": "string",
      "readOnly": true,
      "example": "example_value"
    }
  }
}