AppInfo

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Properties

Name Type Description
id string
name string
publisher string
version string
state string
lastOperationId string
lastUpdateAttemptResult string
View JSON Schema on GitHub

JSON Schema

navision-appinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppInfo",
  "title": "AppInfo",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "publisher": {
      "type": "string",
      "example": "example_value"
    },
    "version": {
      "type": "string",
      "example": "example_value"
    },
    "state": {
      "type": "string",
      "example": "example_value"
    },
    "lastOperationId": {
      "type": "string",
      "format": "uuid",
      "example": "500123"
    },
    "lastUpdateAttemptResult": {
      "type": "string",
      "example": "example_value"
    }
  }
}