AutomationCompany

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Properties

Name Type Description
id string
name string The company name
displayName string The company display name
businessProfileId string The business profile ID
evaluationCompany boolean Whether this is an evaluation company
View JSON Schema on GitHub

JSON Schema

navision-automationcompany-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutomationCompany",
  "title": "AutomationCompany",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "The company name",
      "example": "Example Title"
    },
    "displayName": {
      "type": "string",
      "description": "The company display name",
      "example": "example_value"
    },
    "businessProfileId": {
      "type": "string",
      "description": "The business profile ID",
      "example": "500123"
    },
    "evaluationCompany": {
      "type": "boolean",
      "description": "Whether this is an evaluation company",
      "example": true
    }
  }
}