SupportSettings

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Properties

Name Type Description
appId string
supportUrl string
supportEmail string
supportPhone string
View JSON Schema on GitHub

JSON Schema

navision-supportsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SupportSettings",
  "title": "SupportSettings",
  "type": "object",
  "properties": {
    "appId": {
      "type": "string",
      "format": "uuid",
      "example": "500123"
    },
    "supportUrl": {
      "type": "string",
      "format": "uri",
      "example": "https://www.example.com"
    },
    "supportEmail": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "supportPhone": {
      "type": "string",
      "example": "example_value"
    }
  }
}