{
  "id": "@itentialopensource/adapter-microsoft_dynamics",
  "type": "Adapter",
  "export": "MicrosoftDynamics",
  "title": "Microsoft_dynamics",
  "src": "adapter.js",
  "roles": [
    "admin"
  ],
  "methods": [
    {
      "name": "iapUpdateAdapterConfiguration",
      "summary": "Updates the adapter configuration",
      "description": "Updates the adapter configuration file with the provided changes",
      "input": [
        {
          "name": "configFile",
          "type": "string",
          "info": "The name of the file to change",
          "required": true,
          "schema": {
            "title": "configFile",
            "type": "string"
          }
        },
        {
          "name": "changes",
          "type": "object",
          "info": "JSON object containing the configuration changes",
          "required": true,
          "schema": {
            "title": "changes",
            "type": "object"
          }
        },
        {
          "name": "entity",
          "type": "string",
          "info": "The entity in which the changes are being made",
          "required": false,
          "schema": {
            "title": "entity",
            "type": "string"
          }
        },
        {
          "name": "type",
          "type": "string",
          "info": "The type of file to change - action, schema, or mock",
          "required": false,
          "schema": {
            "title": "type",
            "type": "string"
          }
        },
        {
          "name": "action",
          "type": "string",
          "info": "The action to be changed",
          "required": false,
          "schema": {
            "title": "action",
            "type": "string"
          }
        },
        {
          "name" : "replace",
          "type": "boolean",
          "info": "True to replace entire mock data, false to merge/append",
          "required": false,
          "schema": {
            "title": "replace",
            "type" : "boolean"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapUpdateAdapterConfiguration"
      },
      "task": true
    },
    {
      "name": "iapSuspendAdapter",
      "summary": "Suspends the adapter",
      "description": "Suspends the adapter",
      "input": [
        {
          "name": "mode",
          "type": "enum",
          "enumerals": [
            "pause",
            "error"
          ],
          "info": "How incoming requests are handled. Defaults to 'pause'",
          "description": "How incoming requests are handled. Defaults to 'pause'",
          "schema": {
            "title": "mode",
            "type": "string"
          },
          "required": false
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the adapter suspended status",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapSuspendAdapter"
      },
      "task": true
    },
    {
      "name": "iapUnsuspendAdapter",
      "summary": "Unsuspends the adapter",
      "description": "Unsuspends the adapter",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the adapter suspended status",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapUnsuspendAdapter"
      },
      "task": true
    },
    {
      "name": "iapGetAdapterQueue",
      "summary": "Return the requests that are waiting in the queue if throttling is enabled",
      "description": "Return the requests that are waiting in the queue if throttling is enabled",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the adapter queue",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapGetAdapterQueue"
      },
      "task": true
    },
    {
      "name": "iapFindAdapterPath",
      "summary": "Provides the ability to see if a particular API path is supported by the adapter",
      "description": "Provides the ability to see if a particular API path is supported by the adapter",
      "input": [
        {
          "name": "apiPath",
          "type": "string",
          "info": "The API Path you want to check - make sure to not include base path and version",
          "description": "The API Path you want to check - make sure to not include base path and version",
          "schema": {
            "title": "apiPath",
            "type": "string"
          },
          "required": true
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapFindAdapterPath"
      },
      "task": true
    },
    {
      "name": "iapTroubleshootAdapter",
      "summary": "Runs troubleshoot script for adapter",
      "description": "Runs troubleshoot script for adapter",
      "input": [
        {
          "name": "props",
          "type": "object",
          "info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
          "required": true,
          "schema": {
            "title": "props",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the test results",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapTroubleshootAdapter"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterHealthcheck",
      "summary": "Runs healthcheck script for adapter",
      "description": "Runs healthcheck script for adapter",
      "input": [],
      "output": {
        "name": "result",
        "type": "boolean",
        "description": "Whether healthcheck passed or failed",
        "schema": {
          "title": "result",
          "type": "boolean"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapRunAdapterHealthcheck"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterConnectivity",
      "summary": "Runs connectivity check script for adapter",
      "description": "Runs connectivity check script for adapter",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the test results",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapRunAdapterConnectivity"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterBasicGet",
      "summary": "Runs basicGet script for adapter",
      "description": "Runs basicGet script for adapter",
      "input": [
        {
          "name": "maxCalls",
          "required": false,
          "type": "number", 
          "info": "How many GET endpoints to test (defaults to 5)",
          "schema": {
            "title": "maxCalls",
            "type": "number", 
            "default": 5
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the test results",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapRunAdapterBasicGet"
      },
      "task": true
    },
    {
      "name": "iapMoveAdapterEntitiesToDB",
      "summary": "Moves entities from an adapter into the Itential Platform database",
      "description": "Moves entities from an adapter into the Itential Platform database",
      "input": [],
      "output": {
        "name": "res",
        "type": "object",
        "description": "A JSON Object containing status, code and the response from the mongo transaction",
        "schema": {
          "title": "res",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapMoveAdapterEntitiesToDB"
      },
      "task": true
    },
    {
      "name": "iapDeactivateTasks",
      "summary": "Deactivate the inputted tasks",
      "description": "Deactivate the inputted tasks",
      "input": [
        {
          "name": "tasks",
          "type": "array",
          "description": "Tasks to deactivate",
          "schema": {
            "title": "tasks",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing success status",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapDeactivateTasks"
      },
      "task": true
    },
    {
      "name": "iapActivateTasks",
      "summary": "Activate the inputted tasks",
      "description": "activate the inputted tasks",
      "input": [
        {
          "name": "tasks",
          "type": "array",
          "description": "Tasks to activate",
          "schema": {
            "title": "tasks",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing success status",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapActivateTasks"
      },
      "task": true
    },
    {
      "name": "iapPopulateEntityCache",
      "summary": "Populate the cache for the given entities",
      "description": "Populate the cache for the given entities",
      "input": [
        {
          "name": "entityTypes",
          "type": "array",
          "info": "the entity type(s) to populate",
          "required": true,
          "schema": {
            "title": "entityTypes",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapPopulateEntityCache"
      },
      "task": true
    },
    {
      "name": "iapRetrieveEntitiesCache",
      "summary": "Retrieves data from cache for specified entity type",
      "description": "Retrieves data from cache for specified entity type",
      "input": [
        {
          "name": "entityType",
          "type": "string",
          "info": "entity of which to retrieve",
          "required": true,
          "schema": {
            "title": "entityType",
            "type": "string"
          }
        },
        {
          "name": "options",
          "type": "object",
          "info": "settings of which data to return and how to return it",
          "required": false,
          "schema": {
            "title": "options",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapRetrieveEntitiesCache"
      },
      "task": true
    },
    {
      "name": "getDevice",
      "summary": "Get the Appliance",
      "description": "Get the Appliance",
      "input": [
        {
          "name": "deviceName",
          "type": "string",
          "info": "An Appliance Device Name",
          "required": true,
          "schema": {
            "title": "deviceName",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDevice"
      },
      "task": false
    },
    {
      "name": "getDevicesFiltered",
      "summary": "Get Appliances that match the filter",
      "description": "Get Appliances that match the filter",
      "input": [
        {
          "name": "options",
          "type": "object",
          "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
          "required": true,
          "schema": {
            "title": "options",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "array",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "array"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDevicesFiltered"
      },
      "task": false
    },
    {
      "name": "isAlive",
      "summary": "Checks the status for the provided Appliance",
      "description": "Checks the status for the provided Appliance",
      "input": [
        {
          "name": "deviceName",
          "type": "string",
          "info": "An Appliance Device Name",
          "required": true,
          "schema": {
            "title": "deviceName",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "boolean",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "boolean"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/isAlive"
      },
      "task": false
    },
    {
      "name": "getConfig",
      "summary": "Gets a config for the provided Appliance",
      "description": "Gets a config for the provided Appliance",
      "input": [
        {
          "name": "deviceName",
          "type": "string",
          "info": "An Appliance Device Name",
          "required": true,
          "schema": {
            "title": "deviceName",
            "type": "string"
          }
        },
        {
          "name": "format",
          "type": "string",
          "info": "The format to be returned - this is ignored as we always return json",
          "required": false,
          "schema": {
            "title": "format",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getConfig"
      },
      "task": false
    },
    {
      "name": "iapGetDeviceCount",
      "summary": "Gets a device count from the system",
      "description": "Gets a device count from the system",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapGetDeviceCount"
      },
      "task": false
    },
    {
      "name": "iapExpandedGenericAdapterRequest",
      "summary": "Makes the requested generic call with additional options",
      "description": "Makes the requested generic call with additional options via metadata",
      "input": [
        {
          "name": "metadata",
          "type": "object",
          "info": "metadata for the call (optional)",
          "description": "metadata for the call - allows for many enhancements (optional)",
          "schema": {
            "title": "metadata",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "uriPath",
          "type": "string",
          "info": "the path of the api call - do not include the host, port, base path or version",
          "description": "the path of the api call",
          "schema": {
            "title": "uriPath",
            "type": "string"
          },
          "required": false
        },
        {
          "name": "restMethod",
          "type": "string",
          "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "schema": {
            "title": "restMethod",
            "type": "string"
          },
          "required": false
        },
        {
          "name": "pathVars",
          "type": "object",
          "info": "the parameters to be put within the url path (optional)",
          "description": "the parameters to be put within the url path (optional)",
          "schema": {
            "title": "pathVars",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "queryData",
          "type": "object",
          "info": "the query parameters to be put on the url (optional)",
          "description": "the query parameters to be put on the url (optional)",
          "schema": {
            "title": "queryData",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "requestBody",
          "type": "object",
          "info": "the payload to be sent with the request (optional)",
          "description": "the payload to be sent with the request (optional)",
          "schema": {
            "title": "requestBody",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "addlHeaders",
          "type": "object",
          "info": "additional headers to be put on the call (optional)",
          "description": "additional headers to be put on the call (optional)",
          "schema": {
            "title": "addlHeaders",
            "type": "object"
          },
          "required": false
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapExpandedGenericAdapterRequest"
      },
      "task": true
    },
    {
      "name": "genericAdapterRequest",
      "summary": "Makes the requested generic call",
      "description": "Makes the requested generic call",
      "input": [
        {
          "name": "uriPath",
          "type": "string",
          "info": "the path of the api call - do not include the host, port, base path or version",
          "description": "the path of the api call",
          "schema": {
            "title": "uriPath",
            "type": "string"
          },
          "required": true
        },
        {
          "name": "restMethod",
          "type": "string",
          "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "schema": {
            "title": "restMethod",
            "type": "string"
          },
          "required": true
        },
        {
          "name": "queryData",
          "type": "object",
          "info": "the query parameters to be put on the url (optional)",
          "description": "the query parameters to be put on the url (optional)",
          "schema": {
            "title": "queryData",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "requestBody",
          "type": "object",
          "info": "the payload to be sent with the request (optional)",
          "description": "the payload to be sent with the request (optional)",
          "schema": {
            "title": "requestBody",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "addlHeaders",
          "type": "object",
          "info": "additional headers to be put on the call (optional)",
          "description": "additional headers to be put on the call (optional)",
          "schema": {
            "title": "addlHeaders",
            "type": "object"
          },
          "required": false
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/genericAdapterRequest"
      },
      "task": true
    },
    {
      "name": "genericAdapterRequestNoBasePath",
      "summary": "Makes the requested generic call",
      "description": "Makes the requested generic call",
      "input": [
        {
          "name": "uriPath",
          "type": "string",
          "info": "the path of the api call - do not include the host, port, base path or version",
          "description": "the path of the api call",
          "schema": {
            "title": "uriPath",
            "type": "string"
          },
          "required": true
        },
        {
          "name": "restMethod",
          "type": "string",
          "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "schema": {
            "title": "restMethod",
            "type": "string"
          },
          "required": true
        },
        {
          "name": "queryData",
          "type": "object",
          "info": "the query parameters to be put on the url (optional)",
          "description": "the query parameters to be put on the url (optional)",
          "schema": {
            "title": "queryData",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "requestBody",
          "type": "object",
          "info": "the payload to be sent with the request (optional)",
          "description": "the payload to be sent with the request (optional)",
          "schema": {
            "title": "requestBody",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "addlHeaders",
          "type": "object",
          "info": "additional headers to be put on the call (optional)",
          "description": "additional headers to be put on the call (optional)",
          "schema": {
            "title": "addlHeaders",
            "type": "object"
          },
          "required": false
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/genericAdapterRequestNoBasePath"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterLint",
      "summary": "Run the adapter lint script to return the results",
      "description": "Run the adapter lint script to return the results",
      "input": [],
      "output": {
        "name": "result",
        "type": "string",
        "description": "A string containing the run results",
        "schema": {
          "title": "result",
          "type": "string"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "GET",
        "path": "/iapRunAdapterLint"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterTests",
      "summary": "Run the adapter test scripts (baseunit and unit) to return the results",
      "description": "Run the adapter test scripts (baseunit and unit) to return the results",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "GET",
        "path": "/iapRunAdapterTests"
      },
      "task": true
    },
    {
      "name": "iapGetAdapterInventory",
      "summary": "Provide inventory information abbout the adapter",
      "description": "Provide inventory information abbout the adapter",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "GET",
        "path": "/iapGetAdapterInventory"
      },
      "task": true
    },
    {
      "name": "listCompanies",
      "summary": "listCompanies",
      "description": "Returns a list of companies",
      "input": [
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCompanies"
      },
      "task": true
    },
    {
      "name": "getCompany",
      "summary": "getCompany",
      "description": "Retrieve the properties and relationships of an object of type company for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCompany"
      },
      "task": true
    },
    {
      "name": "listItems",
      "summary": "listItems",
      "description": "Returns a list of items",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listItems"
      },
      "task": true
    },
    {
      "name": "postItem",
      "summary": "postItem",
      "description": "Creates an object of type item in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "item1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "type": {
                "type": "string",
                "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "itemCategoryId": {
                "type": "string",
                "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "itemCategoryCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "blocked": {
                "type": "boolean",
                "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "baseUnitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "baseUnitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "gtin": {
                "maxLength": 14,
                "type": "string",
                "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "inventory": {
                "type": "number",
                "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "priceIncludesTax": {
                "type": "boolean",
                "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "unitCost": {
                "type": "number",
                "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "taxGroupId": {
                "type": "string",
                "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "taxGroupCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postItem"
      },
      "task": true
    },
    {
      "name": "getItem",
      "summary": "getItem",
      "description": "Retrieve the properties and relationships of an object of type item for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getItem"
      },
      "task": true
    },
    {
      "name": "deleteItem",
      "summary": "deleteItem",
      "description": "Deletes an object of type item in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteItem"
      },
      "task": true
    },
    {
      "name": "patchItem",
      "summary": "patchItem",
      "description": "Updates an object of type item in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "item1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "type": {
                "type": "string",
                "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "itemCategoryId": {
                "type": "string",
                "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "itemCategoryCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "blocked": {
                "type": "boolean",
                "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "baseUnitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "baseUnitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "gtin": {
                "maxLength": 14,
                "type": "string",
                "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "inventory": {
                "type": "number",
                "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "priceIncludesTax": {
                "type": "boolean",
                "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "unitCost": {
                "type": "number",
                "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "taxGroupId": {
                "type": "string",
                "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "taxGroupCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchItem"
      },
      "task": true
    },
    {
      "name": "listPictureForItem",
      "summary": "listPictureForItem",
      "description": "Returns a list of picture",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPictureForItem"
      },
      "task": true
    },
    {
      "name": "getPictureForItem",
      "summary": "getPictureForItem",
      "description": "Retrieve the properties and relationships of an object of type picture for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPictureForItem"
      },
      "task": true
    },
    {
      "name": "deletePictureForItem",
      "summary": "deletePictureForItem",
      "description": "Deletes an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePictureForItem"
      },
      "task": true
    },
    {
      "name": "patchPictureForItem",
      "summary": "patchPictureForItem",
      "description": "Updates an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content\": \"string\"}",
          "required": true,
          "schema": {
            "title": "picture1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
              },
              "width": {
                "type": "integer",
                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "height": {
                "type": "integer",
                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "contentType": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPictureForItem"
      },
      "task": true
    },
    {
      "name": "listPicture",
      "summary": "listPicture",
      "description": "Returns a list of picture",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPicture"
      },
      "task": true
    },
    {
      "name": "getPicture",
      "summary": "getPicture",
      "description": "Retrieve the properties and relationships of an object of type picture for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPicture"
      },
      "task": true
    },
    {
      "name": "deletePicture",
      "summary": "deletePicture",
      "description": "Deletes an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePicture"
      },
      "task": true
    },
    {
      "name": "patchPicture",
      "summary": "patchPicture",
      "description": "Updates an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content\": \"string\"}",
          "required": true,
          "schema": {
            "title": "picture1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
              },
              "width": {
                "type": "integer",
                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "height": {
                "type": "integer",
                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "contentType": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPicture"
      },
      "task": true
    },
    {
      "name": "listPictureForCustomer",
      "summary": "listPictureForCustomer",
      "description": "Returns a list of picture",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPictureForCustomer"
      },
      "task": true
    },
    {
      "name": "getPictureForCustomer",
      "summary": "getPictureForCustomer",
      "description": "Retrieve the properties and relationships of an object of type picture for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPictureForCustomer"
      },
      "task": true
    },
    {
      "name": "deletePictureForCustomer",
      "summary": "deletePictureForCustomer",
      "description": "Deletes an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePictureForCustomer"
      },
      "task": true
    },
    {
      "name": "patchPictureForCustomer",
      "summary": "patchPictureForCustomer",
      "description": "Updates an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content\": \"string\"}",
          "required": true,
          "schema": {
            "title": "picture1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
              },
              "width": {
                "type": "integer",
                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "height": {
                "type": "integer",
                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "contentType": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPictureForCustomer"
      },
      "task": true
    },
    {
      "name": "listPictureForVendor",
      "summary": "listPictureForVendor",
      "description": "Returns a list of picture",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPictureForVendor"
      },
      "task": true
    },
    {
      "name": "getPictureForVendor",
      "summary": "getPictureForVendor",
      "description": "Retrieve the properties and relationships of an object of type picture for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPictureForVendor"
      },
      "task": true
    },
    {
      "name": "deletePictureForVendor",
      "summary": "deletePictureForVendor",
      "description": "Deletes an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePictureForVendor"
      },
      "task": true
    },
    {
      "name": "patchPictureForVendor",
      "summary": "patchPictureForVendor",
      "description": "Updates an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content\": \"string\"}",
          "required": true,
          "schema": {
            "title": "picture1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
              },
              "width": {
                "type": "integer",
                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "height": {
                "type": "integer",
                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "contentType": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPictureForVendor"
      },
      "task": true
    },
    {
      "name": "listPictureForEmployee",
      "summary": "listPictureForEmployee",
      "description": "Returns a list of picture",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPictureForEmployee"
      },
      "task": true
    },
    {
      "name": "getPictureForEmployee",
      "summary": "getPictureForEmployee",
      "description": "Retrieve the properties and relationships of an object of type picture for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPictureForEmployee"
      },
      "task": true
    },
    {
      "name": "deletePictureForEmployee",
      "summary": "deletePictureForEmployee",
      "description": "Deletes an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePictureForEmployee"
      },
      "task": true
    },
    {
      "name": "patchPictureForEmployee",
      "summary": "patchPictureForEmployee",
      "description": "Updates an object of type picture in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "pictureId",
          "type": "string",
          "info": "(v1.0) id for picture: string",
          "required": true,
          "schema": {
            "title": "pictureId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content\": \"string\"}",
          "required": true,
          "schema": {
            "title": "picture1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
              },
              "width": {
                "type": "integer",
                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "height": {
                "type": "integer",
                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "contentType": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central picture entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPictureForEmployee"
      },
      "task": true
    },
    {
      "name": "listDefaultDimensionsForItem",
      "summary": "listDefaultDimensionsForItem",
      "description": "Returns a list of defaultDimensions",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDefaultDimensionsForItem"
      },
      "task": true
    },
    {
      "name": "postDefaultDimensionsForItem",
      "summary": "postDefaultDimensionsForItem",
      "description": "Creates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postDefaultDimensionsForItem"
      },
      "task": true
    },
    {
      "name": "getDefaultDimensionsForItem",
      "summary": "getDefaultDimensionsForItem",
      "description": "Retrieve the properties and relationships of an object of type defaultDimensions for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDefaultDimensionsForItem"
      },
      "task": true
    },
    {
      "name": "deleteDefaultDimensionsForItem",
      "summary": "deleteDefaultDimensionsForItem",
      "description": "Deletes an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteDefaultDimensionsForItem"
      },
      "task": true
    },
    {
      "name": "patchDefaultDimensionsForItem",
      "summary": "patchDefaultDimensionsForItem",
      "description": "Updates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemId",
          "type": "string",
          "info": "(v1.0) id for item: string",
          "required": true,
          "schema": {
            "title": "itemId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchDefaultDimensionsForItem"
      },
      "task": true
    },
    {
      "name": "listDefaultDimensions",
      "summary": "listDefaultDimensions",
      "description": "Returns a list of defaultDimensions",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDefaultDimensions"
      },
      "task": true
    },
    {
      "name": "postDefaultDimensions",
      "summary": "postDefaultDimensions",
      "description": "Creates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postDefaultDimensions"
      },
      "task": true
    },
    {
      "name": "getDefaultDimensions",
      "summary": "getDefaultDimensions",
      "description": "Retrieve the properties and relationships of an object of type defaultDimensions for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDefaultDimensions"
      },
      "task": true
    },
    {
      "name": "deleteDefaultDimensions",
      "summary": "deleteDefaultDimensions",
      "description": "Deletes an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteDefaultDimensions"
      },
      "task": true
    },
    {
      "name": "patchDefaultDimensions",
      "summary": "patchDefaultDimensions",
      "description": "Updates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchDefaultDimensions"
      },
      "task": true
    },
    {
      "name": "listDefaultDimensionsForCustomer",
      "summary": "listDefaultDimensionsForCustomer",
      "description": "Returns a list of defaultDimensions",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDefaultDimensionsForCustomer"
      },
      "task": true
    },
    {
      "name": "postDefaultDimensionsForCustomer",
      "summary": "postDefaultDimensionsForCustomer",
      "description": "Creates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postDefaultDimensionsForCustomer"
      },
      "task": true
    },
    {
      "name": "getDefaultDimensionsForCustomer",
      "summary": "getDefaultDimensionsForCustomer",
      "description": "Retrieve the properties and relationships of an object of type defaultDimensions for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDefaultDimensionsForCustomer"
      },
      "task": true
    },
    {
      "name": "deleteDefaultDimensionsForCustomer",
      "summary": "deleteDefaultDimensionsForCustomer",
      "description": "Deletes an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteDefaultDimensionsForCustomer"
      },
      "task": true
    },
    {
      "name": "patchDefaultDimensionsForCustomer",
      "summary": "patchDefaultDimensionsForCustomer",
      "description": "Updates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchDefaultDimensionsForCustomer"
      },
      "task": true
    },
    {
      "name": "listDefaultDimensionsForVendor",
      "summary": "listDefaultDimensionsForVendor",
      "description": "Returns a list of defaultDimensions",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDefaultDimensionsForVendor"
      },
      "task": true
    },
    {
      "name": "postDefaultDimensionsForVendor",
      "summary": "postDefaultDimensionsForVendor",
      "description": "Creates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postDefaultDimensionsForVendor"
      },
      "task": true
    },
    {
      "name": "getDefaultDimensionsForVendor",
      "summary": "getDefaultDimensionsForVendor",
      "description": "Retrieve the properties and relationships of an object of type defaultDimensions for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDefaultDimensionsForVendor"
      },
      "task": true
    },
    {
      "name": "deleteDefaultDimensionsForVendor",
      "summary": "deleteDefaultDimensionsForVendor",
      "description": "Deletes an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteDefaultDimensionsForVendor"
      },
      "task": true
    },
    {
      "name": "patchDefaultDimensionsForVendor",
      "summary": "patchDefaultDimensionsForVendor",
      "description": "Updates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchDefaultDimensionsForVendor"
      },
      "task": true
    },
    {
      "name": "listDefaultDimensionsForEmployee",
      "summary": "listDefaultDimensionsForEmployee",
      "description": "Returns a list of defaultDimensions",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDefaultDimensionsForEmployee"
      },
      "task": true
    },
    {
      "name": "postDefaultDimensionsForEmployee",
      "summary": "postDefaultDimensionsForEmployee",
      "description": "Creates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postDefaultDimensionsForEmployee"
      },
      "task": true
    },
    {
      "name": "getDefaultDimensionsForEmployee",
      "summary": "getDefaultDimensionsForEmployee",
      "description": "Retrieve the properties and relationships of an object of type defaultDimensions for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDefaultDimensionsForEmployee"
      },
      "task": true
    },
    {
      "name": "deleteDefaultDimensionsForEmployee",
      "summary": "deleteDefaultDimensionsForEmployee",
      "description": "Deletes an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteDefaultDimensionsForEmployee"
      },
      "task": true
    },
    {
      "name": "patchDefaultDimensionsForEmployee",
      "summary": "patchDefaultDimensionsForEmployee",
      "description": "Updates an object of type defaultDimensions in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsParentId",
          "type": "string",
          "info": "(v1.0) parentId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsParentId",
            "type": "string"
          }
        },
        {
          "name": "defaultDimensionsDimensionId",
          "type": "string",
          "info": "(v1.0) dimensionId for defaultDimensions: string",
          "required": true,
          "schema": {
            "title": "defaultDimensionsDimensionId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\"}",
          "required": true,
          "schema": {
            "title": "defaultDimensions1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionId": {
                "type": "string",
                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
              },
              "dimensionCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueId": {
                "type": "string",
                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "dimensionValueCode": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              },
              "postingValidation": {
                "type": "string",
                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchDefaultDimensionsForEmployee"
      },
      "task": true
    },
    {
      "name": "listCustomers",
      "summary": "listCustomers",
      "description": "Returns a list of customers",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCustomers"
      },
      "task": true
    },
    {
      "name": "postCustomer",
      "summary": "postCustomer",
      "description": "Creates an object of type customer in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "customer1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
              },
              "type": {
                "type": "string",
                "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "address": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "website": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "taxLiable": {
                "type": "boolean",
                "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "taxAreaId": {
                "type": "string",
                "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "taxAreaDisplayName": {
                "type": "string",
                "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "taxRegistrationNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "paymentMethodId": {
                "type": "string",
                "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "blocked": {
                "type": "string",
                "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCustomer"
      },
      "task": true
    },
    {
      "name": "getCustomer",
      "summary": "getCustomer",
      "description": "Retrieve the properties and relationships of an object of type customer for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCustomer"
      },
      "task": true
    },
    {
      "name": "deleteCustomer",
      "summary": "deleteCustomer",
      "description": "Deletes an object of type customer in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteCustomer"
      },
      "task": true
    },
    {
      "name": "patchCustomer",
      "summary": "patchCustomer",
      "description": "Updates an object of type customer in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "customer1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
              },
              "type": {
                "type": "string",
                "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "address": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "website": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "taxLiable": {
                "type": "boolean",
                "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "taxAreaId": {
                "type": "string",
                "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "taxAreaDisplayName": {
                "type": "string",
                "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "taxRegistrationNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "paymentMethodId": {
                "type": "string",
                "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "blocked": {
                "type": "string",
                "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchCustomer"
      },
      "task": true
    },
    {
      "name": "listCustomerFinancialDetailsForCustomer",
      "summary": "listCustomerFinancialDetailsForCustomer",
      "description": "Returns a list of customerFinancialDetails",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCustomerFinancialDetailsForCustomer"
      },
      "task": true
    },
    {
      "name": "getCustomerFinancialDetailForCustomer",
      "summary": "getCustomerFinancialDetailForCustomer",
      "description": "Retrieve the properties and relationships of an object of type customerFinancialDetail for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerId",
          "type": "string",
          "info": "(v1.0) id for customer: string",
          "required": true,
          "schema": {
            "title": "customerId",
            "type": "string"
          }
        },
        {
          "name": "customerFinancialDetailId",
          "type": "string",
          "info": "(v1.0) id for customerFinancialDetail: string",
          "required": true,
          "schema": {
            "title": "customerFinancialDetailId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCustomerFinancialDetailForCustomer"
      },
      "task": true
    },
    {
      "name": "listCustomerFinancialDetails",
      "summary": "listCustomerFinancialDetails",
      "description": "Returns a list of customerFinancialDetails",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCustomerFinancialDetails"
      },
      "task": true
    },
    {
      "name": "getCustomerFinancialDetail",
      "summary": "getCustomerFinancialDetail",
      "description": "Retrieve the properties and relationships of an object of type customerFinancialDetail for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerFinancialDetailId",
          "type": "string",
          "info": "(v1.0) id for customerFinancialDetail: string",
          "required": true,
          "schema": {
            "title": "customerFinancialDetailId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCustomerFinancialDetail"
      },
      "task": true
    },
    {
      "name": "listVendors",
      "summary": "listVendors",
      "description": "Returns a list of vendors",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listVendors"
      },
      "task": true
    },
    {
      "name": "postVendor",
      "summary": "postVendor",
      "description": "Creates an object of type vendor in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"irs1099Code\": \"string\", \"paymentTermsId\": \"string\", \"paymentMethodId\": \"string\", \"taxLiable\": \"boolean\", \"blocked\": \"string\", \"balance\": 123, \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "vendor1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central vendor entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "address": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "website": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The website property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "taxRegistrationNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "irs1099Code": {
                "type": "string",
                "description": "(v1.0) The irs1099Code property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "paymentMethodId": {
                "type": "string",
                "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "taxLiable": {
                "type": "boolean",
                "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "blocked": {
                "type": "string",
                "description": "(v1.0) The blocked property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "balance": {
                "type": "number",
                "description": "(v1.0) The balance property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postVendor"
      },
      "task": true
    },
    {
      "name": "getVendor",
      "summary": "getVendor",
      "description": "Retrieve the properties and relationships of an object of type vendor for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getVendor"
      },
      "task": true
    },
    {
      "name": "deleteVendor",
      "summary": "deleteVendor",
      "description": "Deletes an object of type vendor in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteVendor"
      },
      "task": true
    },
    {
      "name": "patchVendor",
      "summary": "patchVendor",
      "description": "Updates an object of type vendor in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorId",
          "type": "string",
          "info": "(v1.0) id for vendor: string",
          "required": true,
          "schema": {
            "title": "vendorId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"irs1099Code\": \"string\", \"paymentTermsId\": \"string\", \"paymentMethodId\": \"string\", \"taxLiable\": \"boolean\", \"blocked\": \"string\", \"balance\": 123, \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "vendor1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central vendor entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "address": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "website": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The website property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "taxRegistrationNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "irs1099Code": {
                "type": "string",
                "description": "(v1.0) The irs1099Code property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "paymentMethodId": {
                "type": "string",
                "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "taxLiable": {
                "type": "boolean",
                "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "blocked": {
                "type": "string",
                "description": "(v1.0) The blocked property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "balance": {
                "type": "number",
                "description": "(v1.0) The balance property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central vendor entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchVendor"
      },
      "task": true
    },
    {
      "name": "listCompanyInformation",
      "summary": "listCompanyInformation",
      "description": "Returns a list of companyInformation",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCompanyInformation"
      },
      "task": true
    },
    {
      "name": "getCompanyInformation",
      "summary": "getCompanyInformation",
      "description": "Retrieve the properties and relationships of an object of type companyInformation for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "companyInformationId",
          "type": "string",
          "info": "(v1.0) id for companyInformation: string",
          "required": true,
          "schema": {
            "title": "companyInformationId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCompanyInformation"
      },
      "task": true
    },
    {
      "name": "patchCompanyInformation",
      "summary": "patchCompanyInformation",
      "description": "Updates an object of type companyInformation in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "companyInformationId",
          "type": "string",
          "info": "(v1.0) id for companyInformation: string",
          "required": true,
          "schema": {
            "title": "companyInformationId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"displayName\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"faxNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyCode\": \"string\", \"currentFiscalYearStartDate\": \"string\", \"industry\": \"string\", \"picture\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "companyInformation",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central companyInformation entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "address": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "faxNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The faxNumber property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "website": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The website property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "taxRegistrationNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "currentFiscalYearStartDate": {
                "type": "string",
                "description": "(v1.0) The currentFiscalYearStartDate property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "industry": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The industry property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "picture": {
                "type": "string",
                "description": "(v1.0) The picture property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central companyInformation entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchCompanyInformation"
      },
      "task": true
    },
    {
      "name": "listSalesInvoices",
      "summary": "listSalesInvoices",
      "description": "Returns a list of salesInvoices",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesInvoices"
      },
      "task": true
    },
    {
      "name": "postSalesInvoice",
      "summary": "postSalesInvoice",
      "description": "Creates an object of type salesInvoice in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"externalDocumentNumber\": \"string\", \"invoiceDate\": \"string\", \"dueDate\": \"string\", \"customerPurchaseOrderReference\": \"string\", \"customerId\": \"string\", \"contactId\": \"string\", \"customerNumber\": \"string\", \"customerName\": \"string\", \"billToName\": \"string\", \"billToCustomerId\": \"string\", \"billToCustomerNumber\": \"string\", \"shipToName\": \"string\", \"shipToContact\": \"string\", \"sellingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"billingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"shippingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"orderId\": \"string\", \"orderNumber\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"salesperson\": \"string\", \"pricesIncludeTax\": \"boolean\", \"remainingAmount\": 123, \"discountAmount\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"status\": \"string\", \"lastModifiedDateTime\": \"string\", \"phoneNumber\": \"string\", \"email\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesInvoice1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesInvoice entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "invoiceDate": {
                "type": "string",
                "description": "(v1.0) The invoiceDate property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "dueDate": {
                "type": "string",
                "description": "(v1.0) The dueDate property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "customerPurchaseOrderReference": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The customerPurchaseOrderReference property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "customerName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The customerName property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "billToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The billToName property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "billToCustomerId": {
                "type": "string",
                "description": "(v1.0) The billToCustomerId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "billToCustomerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The billToCustomerNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "shipToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToName property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "shipToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToContact property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "sellingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "billingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "shippingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "orderId": {
                "type": "string",
                "description": "(v1.0) The orderId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "orderNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The orderNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "salesperson": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The salesperson property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "pricesIncludeTax": {
                "type": "boolean",
                "description": "(v1.0) The pricesIncludeTax property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "remainingAmount": {
                "type": "number",
                "description": "(v1.0) The remainingAmount property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesInvoice"
      },
      "task": true
    },
    {
      "name": "getSalesInvoice",
      "summary": "getSalesInvoice",
      "description": "Retrieve the properties and relationships of an object of type salesInvoice for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesInvoice"
      },
      "task": true
    },
    {
      "name": "deleteSalesInvoice",
      "summary": "deleteSalesInvoice",
      "description": "Deletes an object of type salesInvoice in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesInvoice"
      },
      "task": true
    },
    {
      "name": "patchSalesInvoice",
      "summary": "patchSalesInvoice",
      "description": "Updates an object of type salesInvoice in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"externalDocumentNumber\": \"string\", \"invoiceDate\": \"string\", \"dueDate\": \"string\", \"customerPurchaseOrderReference\": \"string\", \"customerId\": \"string\", \"contactId\": \"string\", \"customerNumber\": \"string\", \"customerName\": \"string\", \"billToName\": \"string\", \"billToCustomerId\": \"string\", \"billToCustomerNumber\": \"string\", \"shipToName\": \"string\", \"shipToContact\": \"string\", \"sellingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"billingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"shippingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"orderId\": \"string\", \"orderNumber\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"salesperson\": \"string\", \"pricesIncludeTax\": \"boolean\", \"remainingAmount\": 123, \"discountAmount\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"status\": \"string\", \"lastModifiedDateTime\": \"string\", \"phoneNumber\": \"string\", \"email\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesInvoice1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesInvoice entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "invoiceDate": {
                "type": "string",
                "description": "(v1.0) The invoiceDate property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "dueDate": {
                "type": "string",
                "description": "(v1.0) The dueDate property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "customerPurchaseOrderReference": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The customerPurchaseOrderReference property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "customerName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The customerName property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "billToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The billToName property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "billToCustomerId": {
                "type": "string",
                "description": "(v1.0) The billToCustomerId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "billToCustomerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The billToCustomerNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "shipToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToName property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "shipToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToContact property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "sellingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "billingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "shippingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "orderId": {
                "type": "string",
                "description": "(v1.0) The orderId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "orderNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The orderNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "salesperson": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The salesperson property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "pricesIncludeTax": {
                "type": "boolean",
                "description": "(v1.0) The pricesIncludeTax property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "remainingAmount": {
                "type": "number",
                "description": "(v1.0) The remainingAmount property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central salesInvoice entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesInvoice"
      },
      "task": true
    },
    {
      "name": "cancelAndSendActionSalesInvoices",
      "summary": "cancelAndSendActionSalesInvoices",
      "description": "Performs the cancelAndSend action for salesInvoices entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/cancelAndSendActionSalesInvoices"
      },
      "task": true
    },
    {
      "name": "cancelActionSalesInvoices",
      "summary": "cancelActionSalesInvoices",
      "description": "Performs the cancel action for salesInvoices entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/cancelActionSalesInvoices"
      },
      "task": true
    },
    {
      "name": "makeCorrectiveCreditMemoActionSalesInvoices",
      "summary": "makeCorrectiveCreditMemoActionSalesInvoices",
      "description": "Performs the makeCorrectiveCreditMemo action for salesInvoices entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/makeCorrectiveCreditMemoActionSalesInvoices"
      },
      "task": true
    },
    {
      "name": "postAndSendActionSalesInvoices",
      "summary": "postAndSendActionSalesInvoices",
      "description": "Performs the postAndSend action for salesInvoices entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postAndSendActionSalesInvoices"
      },
      "task": true
    },
    {
      "name": "postActionSalesInvoices",
      "summary": "postActionSalesInvoices",
      "description": "Performs the post action for salesInvoices entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postActionSalesInvoices"
      },
      "task": true
    },
    {
      "name": "sendActionSalesInvoices",
      "summary": "sendActionSalesInvoices",
      "description": "Performs the send action for salesInvoices entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/sendActionSalesInvoices"
      },
      "task": true
    },
    {
      "name": "listSalesInvoiceLinesForSalesInvoice",
      "summary": "listSalesInvoiceLinesForSalesInvoice",
      "description": "Returns a list of salesInvoiceLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesInvoiceLinesForSalesInvoice"
      },
      "task": true
    },
    {
      "name": "postSalesInvoiceLineForSalesInvoice",
      "summary": "postSalesInvoiceLineForSalesInvoice",
      "description": "Creates an object of type salesInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesInvoiceLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesInvoiceLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesInvoiceLineForSalesInvoice"
      },
      "task": true
    },
    {
      "name": "getSalesInvoiceLineForSalesInvoice",
      "summary": "getSalesInvoiceLineForSalesInvoice",
      "description": "Retrieve the properties and relationships of an object of type salesInvoiceLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for salesInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesInvoiceLineForSalesInvoice"
      },
      "task": true
    },
    {
      "name": "deleteSalesInvoiceLineForSalesInvoice",
      "summary": "deleteSalesInvoiceLineForSalesInvoice",
      "description": "Deletes an object of type salesInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for salesInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesInvoiceLineForSalesInvoice"
      },
      "task": true
    },
    {
      "name": "patchSalesInvoiceLineForSalesInvoice",
      "summary": "patchSalesInvoiceLineForSalesInvoice",
      "description": "Updates an object of type salesInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for salesInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesInvoiceLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesInvoiceLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesInvoiceLineForSalesInvoice"
      },
      "task": true
    },
    {
      "name": "listSalesInvoiceLines",
      "summary": "listSalesInvoiceLines",
      "description": "Returns a list of salesInvoiceLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesInvoiceLines"
      },
      "task": true
    },
    {
      "name": "postSalesInvoiceLine",
      "summary": "postSalesInvoiceLine",
      "description": "Creates an object of type salesInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesInvoiceLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesInvoiceLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesInvoiceLine"
      },
      "task": true
    },
    {
      "name": "getSalesInvoiceLine",
      "summary": "getSalesInvoiceLine",
      "description": "Retrieve the properties and relationships of an object of type salesInvoiceLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for salesInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesInvoiceLine"
      },
      "task": true
    },
    {
      "name": "deleteSalesInvoiceLine",
      "summary": "deleteSalesInvoiceLine",
      "description": "Deletes an object of type salesInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for salesInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesInvoiceLine"
      },
      "task": true
    },
    {
      "name": "patchSalesInvoiceLine",
      "summary": "patchSalesInvoiceLine",
      "description": "Updates an object of type salesInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for salesInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesInvoiceLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesInvoiceLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesInvoiceLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesInvoiceLine"
      },
      "task": true
    },
    {
      "name": "listPdfDocumentForSalesInvoice",
      "summary": "listPdfDocumentForSalesInvoice",
      "description": "Returns a list of pdfDocument",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPdfDocumentForSalesInvoice"
      },
      "task": true
    },
    {
      "name": "getPdfDocumentForSalesInvoice",
      "summary": "getPdfDocumentForSalesInvoice",
      "description": "Retrieve the properties and relationships of an object of type pdfDocument for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesInvoiceId",
          "type": "string",
          "info": "(v1.0) id for salesInvoice: string",
          "required": true,
          "schema": {
            "title": "salesInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "pdfDocumentId",
          "type": "string",
          "info": "(v1.0) id for pdfDocument: string",
          "required": true,
          "schema": {
            "title": "pdfDocumentId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPdfDocumentForSalesInvoice"
      },
      "task": true
    },
    {
      "name": "listPdfDocument",
      "summary": "listPdfDocument",
      "description": "Returns a list of pdfDocument",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPdfDocument"
      },
      "task": true
    },
    {
      "name": "getPdfDocument",
      "summary": "getPdfDocument",
      "description": "Retrieve the properties and relationships of an object of type pdfDocument for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "pdfDocumentId",
          "type": "string",
          "info": "(v1.0) id for pdfDocument: string",
          "required": true,
          "schema": {
            "title": "pdfDocumentId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPdfDocument"
      },
      "task": true
    },
    {
      "name": "listPdfDocumentForSalesQuote",
      "summary": "listPdfDocumentForSalesQuote",
      "description": "Returns a list of pdfDocument",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPdfDocumentForSalesQuote"
      },
      "task": true
    },
    {
      "name": "getPdfDocumentForSalesQuote",
      "summary": "getPdfDocumentForSalesQuote",
      "description": "Retrieve the properties and relationships of an object of type pdfDocument for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "pdfDocumentId",
          "type": "string",
          "info": "(v1.0) id for pdfDocument: string",
          "required": true,
          "schema": {
            "title": "pdfDocumentId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPdfDocumentForSalesQuote"
      },
      "task": true
    },
    {
      "name": "listPdfDocumentForSalesCreditMemo",
      "summary": "listPdfDocumentForSalesCreditMemo",
      "description": "Returns a list of pdfDocument",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPdfDocumentForSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "getPdfDocumentForSalesCreditMemo",
      "summary": "getPdfDocumentForSalesCreditMemo",
      "description": "Retrieve the properties and relationships of an object of type pdfDocument for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "pdfDocumentId",
          "type": "string",
          "info": "(v1.0) id for pdfDocument: string",
          "required": true,
          "schema": {
            "title": "pdfDocumentId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPdfDocumentForSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "listPdfDocumentForPurchaseInvoice",
      "summary": "listPdfDocumentForPurchaseInvoice",
      "description": "Returns a list of pdfDocument",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPdfDocumentForPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "getPdfDocumentForPurchaseInvoice",
      "summary": "getPdfDocumentForPurchaseInvoice",
      "description": "Retrieve the properties and relationships of an object of type pdfDocument for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "pdfDocumentId",
          "type": "string",
          "info": "(v1.0) id for pdfDocument: string",
          "required": true,
          "schema": {
            "title": "pdfDocumentId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPdfDocumentForPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "listCustomerPaymentJournals",
      "summary": "listCustomerPaymentJournals",
      "description": "Returns a list of customerPaymentJournals",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCustomerPaymentJournals"
      },
      "task": true
    },
    {
      "name": "postCustomerPaymentJournal",
      "summary": "postCustomerPaymentJournal",
      "description": "Creates an object of type customerPaymentJournal in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"balancingAccountId\": \"string\", \"balancingAccountNumber\": \"string\"}",
          "required": true,
          "schema": {
            "title": "customerPaymentJournal1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerPaymentJournal entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central customerPaymentJournal entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customerPaymentJournal entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customerPaymentJournal entity",
                "x-nullable": true
              },
              "balancingAccountId": {
                "type": "string",
                "description": "(v1.0) The balancingAccountId property for the Dynamics 365 Business Central customerPaymentJournal entity",
                "x-nullable": true
              },
              "balancingAccountNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The balancingAccountNumber property for the Dynamics 365 Business Central customerPaymentJournal entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "getCustomerPaymentJournal",
      "summary": "getCustomerPaymentJournal",
      "description": "Retrieve the properties and relationships of an object of type customerPaymentJournal for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentJournalId",
          "type": "string",
          "info": "(v1.0) id for customerPaymentJournal: string",
          "required": true,
          "schema": {
            "title": "customerPaymentJournalId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "deleteCustomerPaymentJournal",
      "summary": "deleteCustomerPaymentJournal",
      "description": "Deletes an object of type customerPaymentJournal in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentJournalId",
          "type": "string",
          "info": "(v1.0) id for customerPaymentJournal: string",
          "required": true,
          "schema": {
            "title": "customerPaymentJournalId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "patchCustomerPaymentJournal",
      "summary": "patchCustomerPaymentJournal",
      "description": "Updates an object of type customerPaymentJournal in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentJournalId",
          "type": "string",
          "info": "(v1.0) id for customerPaymentJournal: string",
          "required": true,
          "schema": {
            "title": "customerPaymentJournalId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"balancingAccountId\": \"string\", \"balancingAccountNumber\": \"string\"}",
          "required": true,
          "schema": {
            "title": "customerPaymentJournal1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerPaymentJournal entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central customerPaymentJournal entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customerPaymentJournal entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customerPaymentJournal entity",
                "x-nullable": true
              },
              "balancingAccountId": {
                "type": "string",
                "description": "(v1.0) The balancingAccountId property for the Dynamics 365 Business Central customerPaymentJournal entity",
                "x-nullable": true
              },
              "balancingAccountNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The balancingAccountNumber property for the Dynamics 365 Business Central customerPaymentJournal entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "listCustomerPaymentsForCustomerPaymentJournal",
      "summary": "listCustomerPaymentsForCustomerPaymentJournal",
      "description": "Returns a list of customerPayments",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentJournalId",
          "type": "string",
          "info": "(v1.0) id for customerPaymentJournal: string",
          "required": true,
          "schema": {
            "title": "customerPaymentJournalId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCustomerPaymentsForCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "postCustomerPaymentForCustomerPaymentJournal",
      "summary": "postCustomerPaymentForCustomerPaymentJournal",
      "description": "Creates an object of type customerPayment in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentJournalId",
          "type": "string",
          "info": "(v1.0) id for customerPaymentJournal: string",
          "required": true,
          "schema": {
            "title": "customerPaymentJournalId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"journalDisplayName\": \"string\", \"lineNumber\": 123, \"customerId\": \"string\", \"customerNumber\": \"string\", \"contactId\": \"string\", \"postingDate\": \"string\", \"documentNumber\": \"string\", \"externalDocumentNumber\": \"string\", \"amount\": 123, \"appliesToInvoiceId\": \"string\", \"appliesToInvoiceNumber\": \"string\", \"description\": \"string\", \"comment\": \"string\", \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "customerPayment1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerPayment entity"
              },
              "journalDisplayName": {
                "type": "string",
                "description": "(v1.0) The journalDisplayName property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "postingDate": {
                "type": "string",
                "description": "(v1.0) The postingDate property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "documentNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The documentNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "amount": {
                "type": "number",
                "description": "(v1.0) The amount property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "appliesToInvoiceId": {
                "type": "string",
                "description": "(v1.0) The appliesToInvoiceId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "appliesToInvoiceNumber": {
                "type": "string",
                "description": "(v1.0) The appliesToInvoiceNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "comment": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The comment property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCustomerPaymentForCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "getCustomerPaymentForCustomerPaymentJournal",
      "summary": "getCustomerPaymentForCustomerPaymentJournal",
      "description": "Retrieve the properties and relationships of an object of type customerPayment for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentJournalId",
          "type": "string",
          "info": "(v1.0) id for customerPaymentJournal: string",
          "required": true,
          "schema": {
            "title": "customerPaymentJournalId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentId",
          "type": "string",
          "info": "(v1.0) id for customerPayment: string",
          "required": true,
          "schema": {
            "title": "customerPaymentId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCustomerPaymentForCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "deleteCustomerPaymentForCustomerPaymentJournal",
      "summary": "deleteCustomerPaymentForCustomerPaymentJournal",
      "description": "Deletes an object of type customerPayment in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentJournalId",
          "type": "string",
          "info": "(v1.0) id for customerPaymentJournal: string",
          "required": true,
          "schema": {
            "title": "customerPaymentJournalId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentId",
          "type": "string",
          "info": "(v1.0) id for customerPayment: string",
          "required": true,
          "schema": {
            "title": "customerPaymentId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteCustomerPaymentForCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "patchCustomerPaymentForCustomerPaymentJournal",
      "summary": "patchCustomerPaymentForCustomerPaymentJournal",
      "description": "Updates an object of type customerPayment in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentJournalId",
          "type": "string",
          "info": "(v1.0) id for customerPaymentJournal: string",
          "required": true,
          "schema": {
            "title": "customerPaymentJournalId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentId",
          "type": "string",
          "info": "(v1.0) id for customerPayment: string",
          "required": true,
          "schema": {
            "title": "customerPaymentId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"journalDisplayName\": \"string\", \"lineNumber\": 123, \"customerId\": \"string\", \"customerNumber\": \"string\", \"contactId\": \"string\", \"postingDate\": \"string\", \"documentNumber\": \"string\", \"externalDocumentNumber\": \"string\", \"amount\": 123, \"appliesToInvoiceId\": \"string\", \"appliesToInvoiceNumber\": \"string\", \"description\": \"string\", \"comment\": \"string\", \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "customerPayment1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerPayment entity"
              },
              "journalDisplayName": {
                "type": "string",
                "description": "(v1.0) The journalDisplayName property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "postingDate": {
                "type": "string",
                "description": "(v1.0) The postingDate property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "documentNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The documentNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "amount": {
                "type": "number",
                "description": "(v1.0) The amount property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "appliesToInvoiceId": {
                "type": "string",
                "description": "(v1.0) The appliesToInvoiceId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "appliesToInvoiceNumber": {
                "type": "string",
                "description": "(v1.0) The appliesToInvoiceNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "comment": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The comment property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchCustomerPaymentForCustomerPaymentJournal"
      },
      "task": true
    },
    {
      "name": "listCustomerPayments",
      "summary": "listCustomerPayments",
      "description": "Returns a list of customerPayments",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCustomerPayments"
      },
      "task": true
    },
    {
      "name": "postCustomerPayment",
      "summary": "postCustomerPayment",
      "description": "Creates an object of type customerPayment in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"journalDisplayName\": \"string\", \"lineNumber\": 123, \"customerId\": \"string\", \"customerNumber\": \"string\", \"contactId\": \"string\", \"postingDate\": \"string\", \"documentNumber\": \"string\", \"externalDocumentNumber\": \"string\", \"amount\": 123, \"appliesToInvoiceId\": \"string\", \"appliesToInvoiceNumber\": \"string\", \"description\": \"string\", \"comment\": \"string\", \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "customerPayment1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerPayment entity"
              },
              "journalDisplayName": {
                "type": "string",
                "description": "(v1.0) The journalDisplayName property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "postingDate": {
                "type": "string",
                "description": "(v1.0) The postingDate property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "documentNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The documentNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "amount": {
                "type": "number",
                "description": "(v1.0) The amount property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "appliesToInvoiceId": {
                "type": "string",
                "description": "(v1.0) The appliesToInvoiceId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "appliesToInvoiceNumber": {
                "type": "string",
                "description": "(v1.0) The appliesToInvoiceNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "comment": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The comment property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCustomerPayment"
      },
      "task": true
    },
    {
      "name": "getCustomerPayment",
      "summary": "getCustomerPayment",
      "description": "Retrieve the properties and relationships of an object of type customerPayment for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentId",
          "type": "string",
          "info": "(v1.0) id for customerPayment: string",
          "required": true,
          "schema": {
            "title": "customerPaymentId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCustomerPayment"
      },
      "task": true
    },
    {
      "name": "deleteCustomerPayment",
      "summary": "deleteCustomerPayment",
      "description": "Deletes an object of type customerPayment in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentId",
          "type": "string",
          "info": "(v1.0) id for customerPayment: string",
          "required": true,
          "schema": {
            "title": "customerPaymentId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteCustomerPayment"
      },
      "task": true
    },
    {
      "name": "patchCustomerPayment",
      "summary": "patchCustomerPayment",
      "description": "Updates an object of type customerPayment in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerPaymentId",
          "type": "string",
          "info": "(v1.0) id for customerPayment: string",
          "required": true,
          "schema": {
            "title": "customerPaymentId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"journalDisplayName\": \"string\", \"lineNumber\": 123, \"customerId\": \"string\", \"customerNumber\": \"string\", \"contactId\": \"string\", \"postingDate\": \"string\", \"documentNumber\": \"string\", \"externalDocumentNumber\": \"string\", \"amount\": 123, \"appliesToInvoiceId\": \"string\", \"appliesToInvoiceNumber\": \"string\", \"description\": \"string\", \"comment\": \"string\", \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "customerPayment1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerPayment entity"
              },
              "journalDisplayName": {
                "type": "string",
                "description": "(v1.0) The journalDisplayName property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "postingDate": {
                "type": "string",
                "description": "(v1.0) The postingDate property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "documentNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The documentNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "amount": {
                "type": "number",
                "description": "(v1.0) The amount property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "appliesToInvoiceId": {
                "type": "string",
                "description": "(v1.0) The appliesToInvoiceId property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "appliesToInvoiceNumber": {
                "type": "string",
                "description": "(v1.0) The appliesToInvoiceNumber property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "comment": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The comment property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customerPayment entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchCustomerPayment"
      },
      "task": true
    },
    {
      "name": "listAccounts",
      "summary": "listAccounts",
      "description": "Returns a list of accounts",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listAccounts"
      },
      "task": true
    },
    {
      "name": "getAccount",
      "summary": "getAccount",
      "description": "Retrieve the properties and relationships of an object of type account for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "accountId",
          "type": "string",
          "info": "(v1.0) id for account: string",
          "required": true,
          "schema": {
            "title": "accountId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getAccount"
      },
      "task": true
    },
    {
      "name": "listTaxGroups",
      "summary": "listTaxGroups",
      "description": "Returns a list of taxGroups",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listTaxGroups"
      },
      "task": true
    },
    {
      "name": "postTaxGroup",
      "summary": "postTaxGroup",
      "description": "Creates an object of type taxGroup in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"taxType\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "taxGroup",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central taxGroup entity"
              },
              "code": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central taxGroup entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central taxGroup entity",
                "x-nullable": true
              },
              "taxType": {
                "type": "string",
                "description": "(v1.0) The taxType property for the Dynamics 365 Business Central taxGroup entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central taxGroup entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postTaxGroup"
      },
      "task": true
    },
    {
      "name": "getTaxGroup",
      "summary": "getTaxGroup",
      "description": "Retrieve the properties and relationships of an object of type taxGroup for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "taxGroupId",
          "type": "string",
          "info": "(v1.0) id for taxGroup: string",
          "required": true,
          "schema": {
            "title": "taxGroupId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getTaxGroup"
      },
      "task": true
    },
    {
      "name": "deleteTaxGroup",
      "summary": "deleteTaxGroup",
      "description": "Deletes an object of type taxGroup in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "taxGroupId",
          "type": "string",
          "info": "(v1.0) id for taxGroup: string",
          "required": true,
          "schema": {
            "title": "taxGroupId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteTaxGroup"
      },
      "task": true
    },
    {
      "name": "patchTaxGroup",
      "summary": "patchTaxGroup",
      "description": "Updates an object of type taxGroup in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "taxGroupId",
          "type": "string",
          "info": "(v1.0) id for taxGroup: string",
          "required": true,
          "schema": {
            "title": "taxGroupId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"taxType\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "taxGroup",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central taxGroup entity"
              },
              "code": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central taxGroup entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central taxGroup entity",
                "x-nullable": true
              },
              "taxType": {
                "type": "string",
                "description": "(v1.0) The taxType property for the Dynamics 365 Business Central taxGroup entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central taxGroup entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchTaxGroup"
      },
      "task": true
    },
    {
      "name": "listJournals",
      "summary": "listJournals",
      "description": "Returns a list of journals",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listJournals"
      },
      "task": true
    },
    {
      "name": "postJournal",
      "summary": "postJournal",
      "description": "Creates an object of type journal in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"balancingAccountId\": \"string\", \"balancingAccountNumber\": \"string\"}",
          "required": true,
          "schema": {
            "title": "journal1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central journal entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central journal entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central journal entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central journal entity",
                "x-nullable": true
              },
              "balancingAccountId": {
                "type": "string",
                "description": "(v1.0) The balancingAccountId property for the Dynamics 365 Business Central journal entity",
                "x-nullable": true
              },
              "balancingAccountNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The balancingAccountNumber property for the Dynamics 365 Business Central journal entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postJournal"
      },
      "task": true
    },
    {
      "name": "getJournal",
      "summary": "getJournal",
      "description": "Retrieve the properties and relationships of an object of type journal for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getJournal"
      },
      "task": true
    },
    {
      "name": "deleteJournal",
      "summary": "deleteJournal",
      "description": "Deletes an object of type journal in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteJournal"
      },
      "task": true
    },
    {
      "name": "patchJournal",
      "summary": "patchJournal",
      "description": "Updates an object of type journal in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"balancingAccountId\": \"string\", \"balancingAccountNumber\": \"string\"}",
          "required": true,
          "schema": {
            "title": "journal1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central journal entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central journal entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central journal entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central journal entity",
                "x-nullable": true
              },
              "balancingAccountId": {
                "type": "string",
                "description": "(v1.0) The balancingAccountId property for the Dynamics 365 Business Central journal entity",
                "x-nullable": true
              },
              "balancingAccountNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The balancingAccountNumber property for the Dynamics 365 Business Central journal entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchJournal"
      },
      "task": true
    },
    {
      "name": "postActionJournals",
      "summary": "postActionJournals",
      "description": "Performs the post action for journals entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postActionJournals"
      },
      "task": true
    },
    {
      "name": "listJournalLinesForJournal",
      "summary": "listJournalLinesForJournal",
      "description": "Returns a list of journalLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listJournalLinesForJournal"
      },
      "task": true
    },
    {
      "name": "postJournalLineForJournal",
      "summary": "postJournalLineForJournal",
      "description": "Creates an object of type journalLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"journalDisplayName\": \"string\", \"lineNumber\": 123, \"accountType\": \"string\", \"accountId\": \"string\", \"accountNumber\": \"string\", \"postingDate\": \"string\", \"documentNumber\": \"string\", \"externalDocumentNumber\": \"string\", \"amount\": 123, \"description\": \"string\", \"comment\": \"string\", \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "journalLine1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central journalLine entity"
              },
              "journalDisplayName": {
                "type": "string",
                "description": "(v1.0) The journalDisplayName property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountType": {
                "type": "string",
                "description": "(v1.0) The accountType property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The accountNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "postingDate": {
                "type": "string",
                "description": "(v1.0) The postingDate property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "documentNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The documentNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "amount": {
                "type": "number",
                "description": "(v1.0) The amount property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "comment": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The comment property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "getJournalLineForJournal",
      "summary": "getJournalLineForJournal",
      "description": "Retrieve the properties and relationships of an object of type journalLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "deleteJournalLineForJournal",
      "summary": "deleteJournalLineForJournal",
      "description": "Deletes an object of type journalLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "patchJournalLineForJournal",
      "summary": "patchJournalLineForJournal",
      "description": "Updates an object of type journalLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"journalDisplayName\": \"string\", \"lineNumber\": 123, \"accountType\": \"string\", \"accountId\": \"string\", \"accountNumber\": \"string\", \"postingDate\": \"string\", \"documentNumber\": \"string\", \"externalDocumentNumber\": \"string\", \"amount\": 123, \"description\": \"string\", \"comment\": \"string\", \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "journalLine1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central journalLine entity"
              },
              "journalDisplayName": {
                "type": "string",
                "description": "(v1.0) The journalDisplayName property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountType": {
                "type": "string",
                "description": "(v1.0) The accountType property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The accountNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "postingDate": {
                "type": "string",
                "description": "(v1.0) The postingDate property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "documentNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The documentNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "amount": {
                "type": "number",
                "description": "(v1.0) The amount property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "comment": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The comment property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "listJournalLines",
      "summary": "listJournalLines",
      "description": "Returns a list of journalLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listJournalLines"
      },
      "task": true
    },
    {
      "name": "postJournalLine",
      "summary": "postJournalLine",
      "description": "Creates an object of type journalLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"journalDisplayName\": \"string\", \"lineNumber\": 123, \"accountType\": \"string\", \"accountId\": \"string\", \"accountNumber\": \"string\", \"postingDate\": \"string\", \"documentNumber\": \"string\", \"externalDocumentNumber\": \"string\", \"amount\": 123, \"description\": \"string\", \"comment\": \"string\", \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "journalLine1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central journalLine entity"
              },
              "journalDisplayName": {
                "type": "string",
                "description": "(v1.0) The journalDisplayName property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountType": {
                "type": "string",
                "description": "(v1.0) The accountType property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The accountNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "postingDate": {
                "type": "string",
                "description": "(v1.0) The postingDate property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "documentNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The documentNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "amount": {
                "type": "number",
                "description": "(v1.0) The amount property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "comment": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The comment property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postJournalLine"
      },
      "task": true
    },
    {
      "name": "getJournalLine",
      "summary": "getJournalLine",
      "description": "Retrieve the properties and relationships of an object of type journalLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getJournalLine"
      },
      "task": true
    },
    {
      "name": "deleteJournalLine",
      "summary": "deleteJournalLine",
      "description": "Deletes an object of type journalLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteJournalLine"
      },
      "task": true
    },
    {
      "name": "patchJournalLine",
      "summary": "patchJournalLine",
      "description": "Updates an object of type journalLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"journalDisplayName\": \"string\", \"lineNumber\": 123, \"accountType\": \"string\", \"accountId\": \"string\", \"accountNumber\": \"string\", \"postingDate\": \"string\", \"documentNumber\": \"string\", \"externalDocumentNumber\": \"string\", \"amount\": 123, \"description\": \"string\", \"comment\": \"string\", \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "journalLine1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central journalLine entity"
              },
              "journalDisplayName": {
                "type": "string",
                "description": "(v1.0) The journalDisplayName property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountType": {
                "type": "string",
                "description": "(v1.0) The accountType property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "accountNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The accountNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "postingDate": {
                "type": "string",
                "description": "(v1.0) The postingDate property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "documentNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The documentNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "amount": {
                "type": "number",
                "description": "(v1.0) The amount property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "comment": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The comment property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central journalLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchJournalLine"
      },
      "task": true
    },
    {
      "name": "listAttachmentsForJournalLineForJournal",
      "summary": "listAttachmentsForJournalLineForJournal",
      "description": "Returns a list of attachments",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listAttachmentsForJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "postAttachmentsForJournalLineForJournal",
      "summary": "postAttachmentsForJournalLineForJournal",
      "description": "Creates an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"id\": \"string\", \"fileName\": \"string\", \"byteSize\": 123, \"content\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "attachments",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central attachments entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central attachments entity"
              },
              "fileName": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The fileName property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "byteSize": {
                "type": "integer",
                "description": "(v1.0) The byteSize property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postAttachmentsForJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "getAttachmentsForJournalLineForJournal",
      "summary": "getAttachmentsForJournalLineForJournal",
      "description": "Retrieve the properties and relationships of an object of type attachments for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getAttachmentsForJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "deleteAttachmentsForJournalLineForJournal",
      "summary": "deleteAttachmentsForJournalLineForJournal",
      "description": "Deletes an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteAttachmentsForJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "patchAttachmentsForJournalLineForJournal",
      "summary": "patchAttachmentsForJournalLineForJournal",
      "description": "Updates an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalId",
          "type": "string",
          "info": "(v1.0) id for journal: string",
          "required": true,
          "schema": {
            "title": "journalId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"id\": \"string\", \"fileName\": \"string\", \"byteSize\": 123, \"content\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "attachments",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central attachments entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central attachments entity"
              },
              "fileName": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The fileName property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "byteSize": {
                "type": "integer",
                "description": "(v1.0) The byteSize property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchAttachmentsForJournalLineForJournal"
      },
      "task": true
    },
    {
      "name": "listAttachmentsForJournalLine",
      "summary": "listAttachmentsForJournalLine",
      "description": "Returns a list of attachments",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listAttachmentsForJournalLine"
      },
      "task": true
    },
    {
      "name": "postAttachmentsForJournalLine",
      "summary": "postAttachmentsForJournalLine",
      "description": "Creates an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"id\": \"string\", \"fileName\": \"string\", \"byteSize\": 123, \"content\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "attachments",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central attachments entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central attachments entity"
              },
              "fileName": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The fileName property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "byteSize": {
                "type": "integer",
                "description": "(v1.0) The byteSize property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postAttachmentsForJournalLine"
      },
      "task": true
    },
    {
      "name": "getAttachmentsForJournalLine",
      "summary": "getAttachmentsForJournalLine",
      "description": "Retrieve the properties and relationships of an object of type attachments for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getAttachmentsForJournalLine"
      },
      "task": true
    },
    {
      "name": "deleteAttachmentsForJournalLine",
      "summary": "deleteAttachmentsForJournalLine",
      "description": "Deletes an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteAttachmentsForJournalLine"
      },
      "task": true
    },
    {
      "name": "patchAttachmentsForJournalLine",
      "summary": "patchAttachmentsForJournalLine",
      "description": "Updates an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "journalLineId",
          "type": "string",
          "info": "(v1.0) id for journalLine: string",
          "required": true,
          "schema": {
            "title": "journalLineId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"id\": \"string\", \"fileName\": \"string\", \"byteSize\": 123, \"content\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "attachments",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central attachments entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central attachments entity"
              },
              "fileName": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The fileName property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "byteSize": {
                "type": "integer",
                "description": "(v1.0) The byteSize property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchAttachmentsForJournalLine"
      },
      "task": true
    },
    {
      "name": "listAttachments",
      "summary": "listAttachments",
      "description": "Returns a list of attachments",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listAttachments"
      },
      "task": true
    },
    {
      "name": "postAttachments",
      "summary": "postAttachments",
      "description": "Creates an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"id\": \"string\", \"fileName\": \"string\", \"byteSize\": 123, \"content\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "attachments",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central attachments entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central attachments entity"
              },
              "fileName": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The fileName property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "byteSize": {
                "type": "integer",
                "description": "(v1.0) The byteSize property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postAttachments"
      },
      "task": true
    },
    {
      "name": "getAttachments",
      "summary": "getAttachments",
      "description": "Retrieve the properties and relationships of an object of type attachments for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getAttachments"
      },
      "task": true
    },
    {
      "name": "deleteAttachments",
      "summary": "deleteAttachments",
      "description": "Deletes an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteAttachments"
      },
      "task": true
    },
    {
      "name": "patchAttachments",
      "summary": "patchAttachments",
      "description": "Updates an object of type attachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsParentId",
          "type": "string",
          "info": "(v1.0) parentId for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsParentId",
            "type": "string"
          }
        },
        {
          "name": "attachmentsId",
          "type": "string",
          "info": "(v1.0) id for attachments: string",
          "required": true,
          "schema": {
            "title": "attachmentsId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"id\": \"string\", \"fileName\": \"string\", \"byteSize\": 123, \"content\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "attachments",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central attachments entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central attachments entity"
              },
              "fileName": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The fileName property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "byteSize": {
                "type": "integer",
                "description": "(v1.0) The byteSize property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central attachments entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchAttachments"
      },
      "task": true
    },
    {
      "name": "listEmployees",
      "summary": "listEmployees",
      "description": "Returns a list of employees",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listEmployees"
      },
      "task": true
    },
    {
      "name": "postEmployee",
      "summary": "postEmployee",
      "description": "Creates an object of type employee in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"givenName\": \"string\", \"middleName\": \"string\", \"surname\": \"string\", \"jobTitle\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"mobilePhone\": \"string\", \"email\": \"string\", \"personalEmail\": \"string\", \"employmentDate\": \"string\", \"terminationDate\": \"string\", \"status\": \"string\", \"birthDate\": \"string\", \"statisticsGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "employee1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central employee entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "displayName": {
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "givenName": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The givenName property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "middleName": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The middleName property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "surname": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The surname property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "jobTitle": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The jobTitle property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "address": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "mobilePhone": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The mobilePhone property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "personalEmail": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The personalEmail property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "employmentDate": {
                "type": "string",
                "description": "(v1.0) The employmentDate property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "terminationDate": {
                "type": "string",
                "description": "(v1.0) The terminationDate property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "birthDate": {
                "type": "string",
                "description": "(v1.0) The birthDate property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "statisticsGroupCode": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The statisticsGroupCode property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postEmployee"
      },
      "task": true
    },
    {
      "name": "getEmployee",
      "summary": "getEmployee",
      "description": "Retrieve the properties and relationships of an object of type employee for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getEmployee"
      },
      "task": true
    },
    {
      "name": "deleteEmployee",
      "summary": "deleteEmployee",
      "description": "Deletes an object of type employee in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteEmployee"
      },
      "task": true
    },
    {
      "name": "patchEmployee",
      "summary": "patchEmployee",
      "description": "Updates an object of type employee in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"givenName\": \"string\", \"middleName\": \"string\", \"surname\": \"string\", \"jobTitle\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"mobilePhone\": \"string\", \"email\": \"string\", \"personalEmail\": \"string\", \"employmentDate\": \"string\", \"terminationDate\": \"string\", \"status\": \"string\", \"birthDate\": \"string\", \"statisticsGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "employee1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central employee entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "displayName": {
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "givenName": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The givenName property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "middleName": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The middleName property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "surname": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The surname property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "jobTitle": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The jobTitle property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "address": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "mobilePhone": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The mobilePhone property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "personalEmail": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The personalEmail property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "employmentDate": {
                "type": "string",
                "description": "(v1.0) The employmentDate property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "terminationDate": {
                "type": "string",
                "description": "(v1.0) The terminationDate property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "birthDate": {
                "type": "string",
                "description": "(v1.0) The birthDate property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "statisticsGroupCode": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The statisticsGroupCode property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central employee entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchEmployee"
      },
      "task": true
    },
    {
      "name": "listTimeRegistrationEntriesForEmployee",
      "summary": "listTimeRegistrationEntriesForEmployee",
      "description": "Returns a list of timeRegistrationEntries",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listTimeRegistrationEntriesForEmployee"
      },
      "task": true
    },
    {
      "name": "postTimeRegistrationEntryForEmployee",
      "summary": "postTimeRegistrationEntryForEmployee",
      "description": "Creates an object of type timeRegistrationEntry in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"employeeId\": \"string\", \"employeeNumber\": \"string\", \"jobId\": \"string\", \"jobNumber\": \"string\", \"absence\": \"string\", \"lineNumber\": 123, \"date\": \"string\", \"quantity\": 123, \"status\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModfiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntry1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central timeRegistrationEntry entity"
              },
              "employeeId": {
                "type": "string",
                "description": "(v1.0) The employeeId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "employeeNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The employeeNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "jobId": {
                "type": "string",
                "description": "(v1.0) The jobId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "jobNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The jobNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "absence": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The absence property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "date": {
                "type": "string",
                "description": "(v1.0) The date property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModfiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModfiedDateTime property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postTimeRegistrationEntryForEmployee"
      },
      "task": true
    },
    {
      "name": "getTimeRegistrationEntryForEmployee",
      "summary": "getTimeRegistrationEntryForEmployee",
      "description": "Retrieve the properties and relationships of an object of type timeRegistrationEntry for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "timeRegistrationEntryId",
          "type": "string",
          "info": "(v1.0) id for timeRegistrationEntry: string",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntryId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getTimeRegistrationEntryForEmployee"
      },
      "task": true
    },
    {
      "name": "deleteTimeRegistrationEntryForEmployee",
      "summary": "deleteTimeRegistrationEntryForEmployee",
      "description": "Deletes an object of type timeRegistrationEntry in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "timeRegistrationEntryId",
          "type": "string",
          "info": "(v1.0) id for timeRegistrationEntry: string",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntryId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteTimeRegistrationEntryForEmployee"
      },
      "task": true
    },
    {
      "name": "patchTimeRegistrationEntryForEmployee",
      "summary": "patchTimeRegistrationEntryForEmployee",
      "description": "Updates an object of type timeRegistrationEntry in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "employeeId",
          "type": "string",
          "info": "(v1.0) id for employee: string",
          "required": true,
          "schema": {
            "title": "employeeId",
            "type": "string"
          }
        },
        {
          "name": "timeRegistrationEntryId",
          "type": "string",
          "info": "(v1.0) id for timeRegistrationEntry: string",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntryId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"employeeId\": \"string\", \"employeeNumber\": \"string\", \"jobId\": \"string\", \"jobNumber\": \"string\", \"absence\": \"string\", \"lineNumber\": 123, \"date\": \"string\", \"quantity\": 123, \"status\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModfiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntry1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central timeRegistrationEntry entity"
              },
              "employeeId": {
                "type": "string",
                "description": "(v1.0) The employeeId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "employeeNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The employeeNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "jobId": {
                "type": "string",
                "description": "(v1.0) The jobId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "jobNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The jobNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "absence": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The absence property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "date": {
                "type": "string",
                "description": "(v1.0) The date property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModfiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModfiedDateTime property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchTimeRegistrationEntryForEmployee"
      },
      "task": true
    },
    {
      "name": "listTimeRegistrationEntries",
      "summary": "listTimeRegistrationEntries",
      "description": "Returns a list of timeRegistrationEntries",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listTimeRegistrationEntries"
      },
      "task": true
    },
    {
      "name": "postTimeRegistrationEntry",
      "summary": "postTimeRegistrationEntry",
      "description": "Creates an object of type timeRegistrationEntry in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"employeeId\": \"string\", \"employeeNumber\": \"string\", \"jobId\": \"string\", \"jobNumber\": \"string\", \"absence\": \"string\", \"lineNumber\": 123, \"date\": \"string\", \"quantity\": 123, \"status\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModfiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntry1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central timeRegistrationEntry entity"
              },
              "employeeId": {
                "type": "string",
                "description": "(v1.0) The employeeId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "employeeNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The employeeNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "jobId": {
                "type": "string",
                "description": "(v1.0) The jobId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "jobNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The jobNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "absence": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The absence property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "date": {
                "type": "string",
                "description": "(v1.0) The date property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModfiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModfiedDateTime property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postTimeRegistrationEntry"
      },
      "task": true
    },
    {
      "name": "getTimeRegistrationEntry",
      "summary": "getTimeRegistrationEntry",
      "description": "Retrieve the properties and relationships of an object of type timeRegistrationEntry for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "timeRegistrationEntryId",
          "type": "string",
          "info": "(v1.0) id for timeRegistrationEntry: string",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntryId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getTimeRegistrationEntry"
      },
      "task": true
    },
    {
      "name": "deleteTimeRegistrationEntry",
      "summary": "deleteTimeRegistrationEntry",
      "description": "Deletes an object of type timeRegistrationEntry in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "timeRegistrationEntryId",
          "type": "string",
          "info": "(v1.0) id for timeRegistrationEntry: string",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntryId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteTimeRegistrationEntry"
      },
      "task": true
    },
    {
      "name": "patchTimeRegistrationEntry",
      "summary": "patchTimeRegistrationEntry",
      "description": "Updates an object of type timeRegistrationEntry in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "timeRegistrationEntryId",
          "type": "string",
          "info": "(v1.0) id for timeRegistrationEntry: string",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntryId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"employeeId\": \"string\", \"employeeNumber\": \"string\", \"jobId\": \"string\", \"jobNumber\": \"string\", \"absence\": \"string\", \"lineNumber\": 123, \"date\": \"string\", \"quantity\": 123, \"status\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"dimensions\": [{\"code\": \"string\", \"displayName\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\", \"customer\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"address\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"phoneNumber\": \"string\", \"email\": \"string\", \"website\": \"string\", \"taxLiable\": \"boolean\", \"taxAreaId\": \"string\", \"taxAreaDisplayName\": \"string\", \"taxRegistrationNumber\": \"string\", \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"paymentMethodId\": \"string\", \"blocked\": \"string\", \"lastModifiedDateTime\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}}], \"lastModfiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "timeRegistrationEntry1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central timeRegistrationEntry entity"
              },
              "employeeId": {
                "type": "string",
                "description": "(v1.0) The employeeId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "employeeNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The employeeNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "jobId": {
                "type": "string",
                "description": "(v1.0) The jobId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "jobNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The jobNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "absence": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The absence property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "lineNumber": {
                "type": "integer",
                "description": "(v1.0) The lineNumber property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "date": {
                "type": "string",
                "description": "(v1.0) The date property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "dimensions": {
                "type": "array",
                "items": {
                  "title": "dimensiontype",
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "displayName": {
                      "type": "string",
                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "valueCode": {
                      "type": "string",
                      "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensiontype entity"
                    },
                    "valueDisplayName": {
                      "type": "string",
                      "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensiontype entity",
                      "x-nullable": true
                    },
                    "customer": {
                      "title": "customer",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customer entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "displayName": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central customer entity"
                        },
                        "type": {
                          "type": "string",
                          "description": "(v1.0) The type property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "address": {
                          "title": "postaladdresstype",
                          "type": "object",
                          "properties": {
                            "street": {
                              "maxLength": 152,
                              "type": "string",
                              "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "city": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "state": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "countryLetterCode": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "postalCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                              "x-nullable": true
                            },
                            "customerFinancialDetails": {
                              "type": "array",
                              "items": {
                                "title": "customerFinancialDetail",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "balance": {
                                    "type": "number",
                                    "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "totalSalesExcludingTax": {
                                    "type": "number",
                                    "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  },
                                  "overdueAmount": {
                                    "type": "number",
                                    "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "picture": {
                              "type": "array",
                              "items": {
                                "title": "picture",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                  },
                                  "width": {
                                    "type": "integer",
                                    "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "height": {
                                    "type": "integer",
                                    "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "contentType": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaEditLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  },
                                  "content@odata.mediaReadLink": {
                                    "type": "string",
                                    "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "defaultDimensions": {
                              "type": "array",
                              "items": {
                                "title": "defaultDimensions",
                                "type": "object",
                                "properties": {
                                  "parentId": {
                                    "type": "string",
                                    "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                  },
                                  "dimensionCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueId": {
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValueCode": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "postingValidation": {
                                    "type": "string",
                                    "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                    "x-nullable": true
                                  },
                                  "account": {
                                    "title": "account",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                      },
                                      "number": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 100,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "category": {
                                        "type": "string",
                                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "subCategory": {
                                        "maxLength": 80,
                                        "type": "string",
                                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "blocked": {
                                        "type": "boolean",
                                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimension": {
                                    "title": "dimension",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 30,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                        "x-nullable": true
                                      },
                                      "dimensionValues": {
                                        "type": "array",
                                        "items": {
                                          "title": "dimensionValue",
                                          "type": "object",
                                          "properties": {
                                            "id": {
                                              "type": "string",
                                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                            },
                                            "code": {
                                              "maxLength": 20,
                                              "type": "string",
                                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "displayName": {
                                              "maxLength": 50,
                                              "type": "string",
                                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            },
                                            "lastModifiedDateTime": {
                                              "type": "string",
                                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                              "x-nullable": true
                                            }
                                          }
                                        },
                                        "description": "",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "dimensionValue": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            },
                            "currency": {
                              "title": "currency",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "symbol": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountDecimalPlaces": {
                                  "maxLength": 5,
                                  "type": "string",
                                  "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "amountRoundingPrecision": {
                                  "type": "number",
                                  "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentTerm": {
                              "title": "paymentTerm",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "dueDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountDateCalculation": {
                                  "type": "string",
                                  "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "discountPercent": {
                                  "type": "number",
                                  "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "calculateDiscountOnCreditMemos": {
                                  "type": "boolean",
                                  "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "shipmentMethod": {
                              "title": "shipmentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "paymentMethod": {
                              "title": "paymentMethod",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "code": {
                                  "maxLength": 10,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "phoneNumber": {
                          "maxLength": 30,
                          "type": "string",
                          "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "email": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The email property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "website": {
                          "maxLength": 80,
                          "type": "string",
                          "description": "(v1.0) The website property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxLiable": {
                          "type": "boolean",
                          "description": "(v1.0) The taxLiable property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaId": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxAreaDisplayName": {
                          "type": "string",
                          "description": "(v1.0) The taxAreaDisplayName property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "taxRegistrationNumber": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The taxRegistrationNumber property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyId": {
                          "type": "string",
                          "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "currencyCode": {
                          "type": "string",
                          "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentTermsId": {
                          "type": "string",
                          "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "shipmentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "paymentMethodId": {
                          "type": "string",
                          "description": "(v1.0) The paymentMethodId property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "blocked": {
                          "type": "string",
                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "lastModifiedDateTime": {
                          "type": "string",
                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central customer entity",
                          "x-nullable": true
                        },
                        "customerFinancialDetails": {
                          "type": "array",
                          "items": {
                            "title": "customerFinancialDetail",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                              },
                              "number": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "balance": {
                                "type": "number",
                                "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "totalSalesExcludingTax": {
                                "type": "number",
                                "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              },
                              "overdueAmount": {
                                "type": "number",
                                "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "picture": {
                          "type": "array",
                          "items": {
                            "title": "picture",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                              },
                              "width": {
                                "type": "integer",
                                "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "height": {
                                "type": "integer",
                                "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "contentType": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaEditLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              },
                              "content@odata.mediaReadLink": {
                                "type": "string",
                                "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                "x-nullable": true
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "defaultDimensions": {
                          "type": "array",
                          "items": {
                            "title": "defaultDimensions",
                            "type": "object",
                            "properties": {
                              "parentId": {
                                "type": "string",
                                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                              },
                              "dimensionCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueId": {
                                "type": "string",
                                "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "dimensionValueCode": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "postingValidation": {
                                "type": "string",
                                "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                "x-nullable": true
                              },
                              "account": {
                                "title": "account",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                  },
                                  "number": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "category": {
                                    "type": "string",
                                    "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "subCategory": {
                                    "maxLength": 80,
                                    "type": "string",
                                    "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "blocked": {
                                    "type": "boolean",
                                    "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimension": {
                                "title": "dimension",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 30,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                    "x-nullable": true
                                  },
                                  "dimensionValues": {
                                    "type": "array",
                                    "items": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "description": "",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "dimensionValue": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "description": "",
                          "x-nullable": true
                        },
                        "currency": {
                          "title": "currency",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "symbol": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountDecimalPlaces": {
                              "maxLength": 5,
                              "type": "string",
                              "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "amountRoundingPrecision": {
                              "type": "number",
                              "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentTerm": {
                          "title": "paymentTerm",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "dueDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountDateCalculation": {
                              "type": "string",
                              "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "discountPercent": {
                              "type": "number",
                              "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "calculateDiscountOnCreditMemos": {
                              "type": "boolean",
                              "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "shipmentMethod": {
                          "title": "shipmentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "paymentMethod": {
                          "title": "paymentMethod",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "code": {
                              "maxLength": 10,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "description": ""
              },
              "lastModfiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModfiedDateTime property for the Dynamics 365 Business Central timeRegistrationEntry entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchTimeRegistrationEntry"
      },
      "task": true
    },
    {
      "name": "listGeneralLedgerEntries",
      "summary": "listGeneralLedgerEntries",
      "description": "Returns a list of generalLedgerEntries",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listGeneralLedgerEntries"
      },
      "task": true
    },
    {
      "name": "getGeneralLedgerEntry",
      "summary": "getGeneralLedgerEntry",
      "description": "Retrieve the properties and relationships of an object of type generalLedgerEntry for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "generalLedgerEntryId",
          "type": "number",
          "info": "(v1.0) id for generalLedgerEntry: 123",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryId",
            "type": "number"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getGeneralLedgerEntry"
      },
      "task": true
    },
    {
      "name": "listCurrencies",
      "summary": "listCurrencies",
      "description": "Returns a list of currencies",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCurrencies"
      },
      "task": true
    },
    {
      "name": "postCurrency",
      "summary": "postCurrency",
      "description": "Creates an object of type currency in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "currency",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
              },
              "displayName": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              },
              "symbol": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              },
              "amountDecimalPlaces": {
                "maxLength": 5,
                "type": "string",
                "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              },
              "amountRoundingPrecision": {
                "type": "number",
                "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCurrency"
      },
      "task": true
    },
    {
      "name": "getCurrency",
      "summary": "getCurrency",
      "description": "Retrieve the properties and relationships of an object of type currency for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "currencyId",
          "type": "string",
          "info": "(v1.0) id for currency: string",
          "required": true,
          "schema": {
            "title": "currencyId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCurrency"
      },
      "task": true
    },
    {
      "name": "deleteCurrency",
      "summary": "deleteCurrency",
      "description": "Deletes an object of type currency in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "currencyId",
          "type": "string",
          "info": "(v1.0) id for currency: string",
          "required": true,
          "schema": {
            "title": "currencyId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteCurrency"
      },
      "task": true
    },
    {
      "name": "patchCurrency",
      "summary": "patchCurrency",
      "description": "Updates an object of type currency in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "currencyId",
          "type": "string",
          "info": "(v1.0) id for currency: string",
          "required": true,
          "schema": {
            "title": "currencyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "currency",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
              },
              "displayName": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              },
              "symbol": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              },
              "amountDecimalPlaces": {
                "maxLength": 5,
                "type": "string",
                "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              },
              "amountRoundingPrecision": {
                "type": "number",
                "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchCurrency"
      },
      "task": true
    },
    {
      "name": "listPaymentMethods",
      "summary": "listPaymentMethods",
      "description": "Returns a list of paymentMethods",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPaymentMethods"
      },
      "task": true
    },
    {
      "name": "postPaymentMethod",
      "summary": "postPaymentMethod",
      "description": "Creates an object of type paymentMethod in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "paymentMethod",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postPaymentMethod"
      },
      "task": true
    },
    {
      "name": "getPaymentMethod",
      "summary": "getPaymentMethod",
      "description": "Retrieve the properties and relationships of an object of type paymentMethod for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "paymentMethodId",
          "type": "string",
          "info": "(v1.0) id for paymentMethod: string",
          "required": true,
          "schema": {
            "title": "paymentMethodId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPaymentMethod"
      },
      "task": true
    },
    {
      "name": "deletePaymentMethod",
      "summary": "deletePaymentMethod",
      "description": "Deletes an object of type paymentMethod in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "paymentMethodId",
          "type": "string",
          "info": "(v1.0) id for paymentMethod: string",
          "required": true,
          "schema": {
            "title": "paymentMethodId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePaymentMethod"
      },
      "task": true
    },
    {
      "name": "patchPaymentMethod",
      "summary": "patchPaymentMethod",
      "description": "Updates an object of type paymentMethod in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "paymentMethodId",
          "type": "string",
          "info": "(v1.0) id for paymentMethod: string",
          "required": true,
          "schema": {
            "title": "paymentMethodId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "paymentMethod",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPaymentMethod"
      },
      "task": true
    },
    {
      "name": "listDimensions",
      "summary": "listDimensions",
      "description": "Returns a list of dimensions",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDimensions"
      },
      "task": true
    },
    {
      "name": "getDimension",
      "summary": "getDimension",
      "description": "Retrieve the properties and relationships of an object of type dimension for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "dimensionId",
          "type": "string",
          "info": "(v1.0) id for dimension: string",
          "required": true,
          "schema": {
            "title": "dimensionId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDimension"
      },
      "task": true
    },
    {
      "name": "listDimensionValuesForDimension",
      "summary": "listDimensionValuesForDimension",
      "description": "Returns a list of dimensionValues",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "dimensionId",
          "type": "string",
          "info": "(v1.0) id for dimension: string",
          "required": true,
          "schema": {
            "title": "dimensionId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDimensionValuesForDimension"
      },
      "task": true
    },
    {
      "name": "getDimensionValueForDimension",
      "summary": "getDimensionValueForDimension",
      "description": "Retrieve the properties and relationships of an object of type dimensionValue for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "dimensionId",
          "type": "string",
          "info": "(v1.0) id for dimension: string",
          "required": true,
          "schema": {
            "title": "dimensionId",
            "type": "string"
          }
        },
        {
          "name": "dimensionValueId",
          "type": "string",
          "info": "(v1.0) id for dimensionValue: string",
          "required": true,
          "schema": {
            "title": "dimensionValueId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDimensionValueForDimension"
      },
      "task": true
    },
    {
      "name": "listDimensionValues",
      "summary": "listDimensionValues",
      "description": "Returns a list of dimensionValues",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDimensionValues"
      },
      "task": true
    },
    {
      "name": "getDimensionValue",
      "summary": "getDimensionValue",
      "description": "Retrieve the properties and relationships of an object of type dimensionValue for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "dimensionValueId",
          "type": "string",
          "info": "(v1.0) id for dimensionValue: string",
          "required": true,
          "schema": {
            "title": "dimensionValueId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDimensionValue"
      },
      "task": true
    },
    {
      "name": "listDimensionLines",
      "summary": "listDimensionLines",
      "description": "Returns a list of dimensionLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listDimensionLines"
      },
      "task": true
    },
    {
      "name": "postDimensionLine",
      "summary": "postDimensionLine",
      "description": "Creates an object of type dimensionLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"valueId\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\"}",
          "required": true,
          "schema": {
            "title": "dimensionLine1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central dimensionLine entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionLine entity"
              },
              "code": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              },
              "valueId": {
                "type": "string",
                "description": "(v1.0) The valueId property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              },
              "valueCode": {
                "type": "string",
                "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              },
              "valueDisplayName": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postDimensionLine"
      },
      "task": true
    },
    {
      "name": "getDimensionLine",
      "summary": "getDimensionLine",
      "description": "Retrieve the properties and relationships of an object of type dimensionLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "dimensionLineParentId",
          "type": "string",
          "info": "(v1.0) parentId for dimensionLine: string",
          "required": true,
          "schema": {
            "title": "dimensionLineParentId",
            "type": "string"
          }
        },
        {
          "name": "dimensionLineId",
          "type": "string",
          "info": "(v1.0) id for dimensionLine: string",
          "required": true,
          "schema": {
            "title": "dimensionLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDimensionLine"
      },
      "task": true
    },
    {
      "name": "deleteDimensionLine",
      "summary": "deleteDimensionLine",
      "description": "Deletes an object of type dimensionLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "dimensionLineParentId",
          "type": "string",
          "info": "(v1.0) parentId for dimensionLine: string",
          "required": true,
          "schema": {
            "title": "dimensionLineParentId",
            "type": "string"
          }
        },
        {
          "name": "dimensionLineId",
          "type": "string",
          "info": "(v1.0) id for dimensionLine: string",
          "required": true,
          "schema": {
            "title": "dimensionLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteDimensionLine"
      },
      "task": true
    },
    {
      "name": "patchDimensionLine",
      "summary": "patchDimensionLine",
      "description": "Updates an object of type dimensionLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "dimensionLineParentId",
          "type": "string",
          "info": "(v1.0) parentId for dimensionLine: string",
          "required": true,
          "schema": {
            "title": "dimensionLineParentId",
            "type": "string"
          }
        },
        {
          "name": "dimensionLineId",
          "type": "string",
          "info": "(v1.0) id for dimensionLine: string",
          "required": true,
          "schema": {
            "title": "dimensionLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"parentId\": \"string\", \"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"valueId\": \"string\", \"valueCode\": \"string\", \"valueDisplayName\": \"string\"}",
          "required": true,
          "schema": {
            "title": "dimensionLine1",
            "type": "object",
            "properties": {
              "parentId": {
                "type": "string",
                "description": "(v1.0) The parentId property for the Dynamics 365 Business Central dimensionLine entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionLine entity"
              },
              "code": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              },
              "valueId": {
                "type": "string",
                "description": "(v1.0) The valueId property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              },
              "valueCode": {
                "type": "string",
                "description": "(v1.0) The valueCode property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              },
              "valueDisplayName": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The valueDisplayName property for the Dynamics 365 Business Central dimensionLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchDimensionLine"
      },
      "task": true
    },
    {
      "name": "listPaymentTerms",
      "summary": "listPaymentTerms",
      "description": "Returns a list of paymentTerms",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPaymentTerms"
      },
      "task": true
    },
    {
      "name": "postPaymentTerm",
      "summary": "postPaymentTerm",
      "description": "Creates an object of type paymentTerm in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "paymentTerm",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "dueDateCalculation": {
                "type": "string",
                "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "discountDateCalculation": {
                "type": "string",
                "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "calculateDiscountOnCreditMemos": {
                "type": "boolean",
                "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postPaymentTerm"
      },
      "task": true
    },
    {
      "name": "getPaymentTerm",
      "summary": "getPaymentTerm",
      "description": "Retrieve the properties and relationships of an object of type paymentTerm for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "paymentTermId",
          "type": "string",
          "info": "(v1.0) id for paymentTerm: string",
          "required": true,
          "schema": {
            "title": "paymentTermId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPaymentTerm"
      },
      "task": true
    },
    {
      "name": "deletePaymentTerm",
      "summary": "deletePaymentTerm",
      "description": "Deletes an object of type paymentTerm in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "paymentTermId",
          "type": "string",
          "info": "(v1.0) id for paymentTerm: string",
          "required": true,
          "schema": {
            "title": "paymentTermId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePaymentTerm"
      },
      "task": true
    },
    {
      "name": "patchPaymentTerm",
      "summary": "patchPaymentTerm",
      "description": "Updates an object of type paymentTerm in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "paymentTermId",
          "type": "string",
          "info": "(v1.0) id for paymentTerm: string",
          "required": true,
          "schema": {
            "title": "paymentTermId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "paymentTerm",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "dueDateCalculation": {
                "type": "string",
                "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "discountDateCalculation": {
                "type": "string",
                "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "calculateDiscountOnCreditMemos": {
                "type": "boolean",
                "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPaymentTerm"
      },
      "task": true
    },
    {
      "name": "listShipmentMethods",
      "summary": "listShipmentMethods",
      "description": "Returns a list of shipmentMethods",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listShipmentMethods"
      },
      "task": true
    },
    {
      "name": "postShipmentMethod",
      "summary": "postShipmentMethod",
      "description": "Creates an object of type shipmentMethod in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "shipmentMethod",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postShipmentMethod"
      },
      "task": true
    },
    {
      "name": "getShipmentMethod",
      "summary": "getShipmentMethod",
      "description": "Retrieve the properties and relationships of an object of type shipmentMethod for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "shipmentMethodId",
          "type": "string",
          "info": "(v1.0) id for shipmentMethod: string",
          "required": true,
          "schema": {
            "title": "shipmentMethodId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getShipmentMethod"
      },
      "task": true
    },
    {
      "name": "deleteShipmentMethod",
      "summary": "deleteShipmentMethod",
      "description": "Deletes an object of type shipmentMethod in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "shipmentMethodId",
          "type": "string",
          "info": "(v1.0) id for shipmentMethod: string",
          "required": true,
          "schema": {
            "title": "shipmentMethodId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteShipmentMethod"
      },
      "task": true
    },
    {
      "name": "patchShipmentMethod",
      "summary": "patchShipmentMethod",
      "description": "Updates an object of type shipmentMethod in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "shipmentMethodId",
          "type": "string",
          "info": "(v1.0) id for shipmentMethod: string",
          "required": true,
          "schema": {
            "title": "shipmentMethodId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "shipmentMethod",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchShipmentMethod"
      },
      "task": true
    },
    {
      "name": "listItemCategories",
      "summary": "listItemCategories",
      "description": "Returns a list of itemCategories",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listItemCategories"
      },
      "task": true
    },
    {
      "name": "postItemCategory",
      "summary": "postItemCategory",
      "description": "Creates an object of type itemCategory in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "itemCategory",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
              },
              "code": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postItemCategory"
      },
      "task": true
    },
    {
      "name": "getItemCategory",
      "summary": "getItemCategory",
      "description": "Retrieve the properties and relationships of an object of type itemCategory for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemCategoryId",
          "type": "string",
          "info": "(v1.0) id for itemCategory: string",
          "required": true,
          "schema": {
            "title": "itemCategoryId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getItemCategory"
      },
      "task": true
    },
    {
      "name": "deleteItemCategory",
      "summary": "deleteItemCategory",
      "description": "Deletes an object of type itemCategory in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemCategoryId",
          "type": "string",
          "info": "(v1.0) id for itemCategory: string",
          "required": true,
          "schema": {
            "title": "itemCategoryId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteItemCategory"
      },
      "task": true
    },
    {
      "name": "patchItemCategory",
      "summary": "patchItemCategory",
      "description": "Updates an object of type itemCategory in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "itemCategoryId",
          "type": "string",
          "info": "(v1.0) id for itemCategory: string",
          "required": true,
          "schema": {
            "title": "itemCategoryId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "itemCategory",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
              },
              "code": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchItemCategory"
      },
      "task": true
    },
    {
      "name": "listCashFlowStatement",
      "summary": "listCashFlowStatement",
      "description": "Returns a list of cashFlowStatement",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCashFlowStatement"
      },
      "task": true
    },
    {
      "name": "getCashFlowStatement",
      "summary": "getCashFlowStatement",
      "description": "Retrieve the properties and relationships of an object of type cashFlowStatement for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "cashFlowStatementLineNumber",
          "type": "number",
          "info": "(v1.0) lineNumber for cashFlowStatement: 123",
          "required": true,
          "schema": {
            "title": "cashFlowStatementLineNumber",
            "type": "number"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCashFlowStatement"
      },
      "task": true
    },
    {
      "name": "listCountriesRegions",
      "summary": "listCountriesRegions",
      "description": "Returns a list of countriesRegions",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCountriesRegions"
      },
      "task": true
    },
    {
      "name": "postCountryRegion",
      "summary": "postCountryRegion",
      "description": "Creates an object of type countryRegion in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"addressFormat\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "countryRegion",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central countryRegion entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central countryRegion entity"
              },
              "displayName": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central countryRegion entity",
                "x-nullable": true
              },
              "addressFormat": {
                "type": "string",
                "description": "(v1.0) The addressFormat property for the Dynamics 365 Business Central countryRegion entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central countryRegion entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCountryRegion"
      },
      "task": true
    },
    {
      "name": "getCountryRegion",
      "summary": "getCountryRegion",
      "description": "Retrieve the properties and relationships of an object of type countryRegion for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "countryRegionId",
          "type": "string",
          "info": "(v1.0) id for countryRegion: string",
          "required": true,
          "schema": {
            "title": "countryRegionId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCountryRegion"
      },
      "task": true
    },
    {
      "name": "deleteCountryRegion",
      "summary": "deleteCountryRegion",
      "description": "Deletes an object of type countryRegion in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "countryRegionId",
          "type": "string",
          "info": "(v1.0) id for countryRegion: string",
          "required": true,
          "schema": {
            "title": "countryRegionId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteCountryRegion"
      },
      "task": true
    },
    {
      "name": "patchCountryRegion",
      "summary": "patchCountryRegion",
      "description": "Updates an object of type countryRegion in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "countryRegionId",
          "type": "string",
          "info": "(v1.0) id for countryRegion: string",
          "required": true,
          "schema": {
            "title": "countryRegionId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"addressFormat\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "countryRegion",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central countryRegion entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central countryRegion entity"
              },
              "displayName": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central countryRegion entity",
                "x-nullable": true
              },
              "addressFormat": {
                "type": "string",
                "description": "(v1.0) The addressFormat property for the Dynamics 365 Business Central countryRegion entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central countryRegion entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchCountryRegion"
      },
      "task": true
    },
    {
      "name": "listSalesOrders",
      "summary": "listSalesOrders",
      "description": "Returns a list of salesOrders",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesOrders"
      },
      "task": true
    },
    {
      "name": "postSalesOrder",
      "summary": "postSalesOrder",
      "description": "Creates an object of type salesOrder in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"externalDocumentNumber\": \"string\", \"orderDate\": \"string\", \"customerId\": \"string\", \"contactId\": \"string\", \"customerNumber\": \"string\", \"customerName\": \"string\", \"billToName\": \"string\", \"billToCustomerId\": \"string\", \"billToCustomerNumber\": \"string\", \"shipToName\": \"string\", \"shipToContact\": \"string\", \"sellingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"billingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"shippingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"pricesIncludeTax\": \"boolean\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"salesperson\": \"string\", \"partialShipping\": \"boolean\", \"requestedDeliveryDate\": \"string\", \"discountAmount\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"fullyShipped\": \"boolean\", \"status\": \"string\", \"lastModifiedDateTime\": \"string\", \"phoneNumber\": \"string\", \"email\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesOrder1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesOrder entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "orderDate": {
                "type": "string",
                "description": "(v1.0) The orderDate property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "customerName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The customerName property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "billToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The billToName property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "billToCustomerId": {
                "type": "string",
                "description": "(v1.0) The billToCustomerId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "billToCustomerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The billToCustomerNumber property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "shipToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToName property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "shipToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToContact property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "sellingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "billingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "shippingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "pricesIncludeTax": {
                "type": "boolean",
                "description": "(v1.0) The pricesIncludeTax property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "salesperson": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The salesperson property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "partialShipping": {
                "type": "boolean",
                "description": "(v1.0) The partialShipping property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "requestedDeliveryDate": {
                "type": "string",
                "description": "(v1.0) The requestedDeliveryDate property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "fullyShipped": {
                "type": "boolean",
                "description": "(v1.0) The fullyShipped property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesOrder"
      },
      "task": true
    },
    {
      "name": "getSalesOrder",
      "summary": "getSalesOrder",
      "description": "Retrieve the properties and relationships of an object of type salesOrder for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesOrder"
      },
      "task": true
    },
    {
      "name": "deleteSalesOrder",
      "summary": "deleteSalesOrder",
      "description": "Deletes an object of type salesOrder in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesOrder"
      },
      "task": true
    },
    {
      "name": "patchSalesOrder",
      "summary": "patchSalesOrder",
      "description": "Updates an object of type salesOrder in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"externalDocumentNumber\": \"string\", \"orderDate\": \"string\", \"customerId\": \"string\", \"contactId\": \"string\", \"customerNumber\": \"string\", \"customerName\": \"string\", \"billToName\": \"string\", \"billToCustomerId\": \"string\", \"billToCustomerNumber\": \"string\", \"shipToName\": \"string\", \"shipToContact\": \"string\", \"sellingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"billingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"shippingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"pricesIncludeTax\": \"boolean\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"salesperson\": \"string\", \"partialShipping\": \"boolean\", \"requestedDeliveryDate\": \"string\", \"discountAmount\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"fullyShipped\": \"boolean\", \"status\": \"string\", \"lastModifiedDateTime\": \"string\", \"phoneNumber\": \"string\", \"email\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesOrder1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesOrder entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "orderDate": {
                "type": "string",
                "description": "(v1.0) The orderDate property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "customerName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The customerName property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "billToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The billToName property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "billToCustomerId": {
                "type": "string",
                "description": "(v1.0) The billToCustomerId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "billToCustomerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The billToCustomerNumber property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "shipToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToName property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "shipToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToContact property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "sellingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "billingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "shippingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "pricesIncludeTax": {
                "type": "boolean",
                "description": "(v1.0) The pricesIncludeTax property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "salesperson": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The salesperson property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "partialShipping": {
                "type": "boolean",
                "description": "(v1.0) The partialShipping property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "requestedDeliveryDate": {
                "type": "string",
                "description": "(v1.0) The requestedDeliveryDate property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "fullyShipped": {
                "type": "boolean",
                "description": "(v1.0) The fullyShipped property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central salesOrder entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesOrder"
      },
      "task": true
    },
    {
      "name": "shipAndInvoiceActionSalesOrders",
      "summary": "shipAndInvoiceActionSalesOrders",
      "description": "Performs the shipAndInvoice action for salesOrders entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/shipAndInvoiceActionSalesOrders"
      },
      "task": true
    },
    {
      "name": "listSalesOrderLinesForSalesOrder",
      "summary": "listSalesOrderLinesForSalesOrder",
      "description": "Returns a list of salesOrderLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesOrderLinesForSalesOrder"
      },
      "task": true
    },
    {
      "name": "postSalesOrderLineForSalesOrder",
      "summary": "postSalesOrderLineForSalesOrder",
      "description": "Creates an object of type salesOrderLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"quantity\": 123, \"unitPrice\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\", \"shippedQuantity\": 123, \"invoicedQuantity\": 123, \"invoiceQuantity\": 123, \"shipQuantity\": 123}",
          "required": true,
          "schema": {
            "title": "salesOrderLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesOrderLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shippedQuantity": {
                "type": "number",
                "description": "(v1.0) The shippedQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoicedQuantity": {
                "type": "number",
                "description": "(v1.0) The invoicedQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoiceQuantity": {
                "type": "number",
                "description": "(v1.0) The invoiceQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shipQuantity": {
                "type": "number",
                "description": "(v1.0) The shipQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesOrderLineForSalesOrder"
      },
      "task": true
    },
    {
      "name": "getSalesOrderLineForSalesOrder",
      "summary": "getSalesOrderLineForSalesOrder",
      "description": "Retrieve the properties and relationships of an object of type salesOrderLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderLineId",
          "type": "string",
          "info": "(v1.0) id for salesOrderLine: string",
          "required": true,
          "schema": {
            "title": "salesOrderLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesOrderLineForSalesOrder"
      },
      "task": true
    },
    {
      "name": "deleteSalesOrderLineForSalesOrder",
      "summary": "deleteSalesOrderLineForSalesOrder",
      "description": "Deletes an object of type salesOrderLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderLineId",
          "type": "string",
          "info": "(v1.0) id for salesOrderLine: string",
          "required": true,
          "schema": {
            "title": "salesOrderLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesOrderLineForSalesOrder"
      },
      "task": true
    },
    {
      "name": "patchSalesOrderLineForSalesOrder",
      "summary": "patchSalesOrderLineForSalesOrder",
      "description": "Updates an object of type salesOrderLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderId",
          "type": "string",
          "info": "(v1.0) id for salesOrder: string",
          "required": true,
          "schema": {
            "title": "salesOrderId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderLineId",
          "type": "string",
          "info": "(v1.0) id for salesOrderLine: string",
          "required": true,
          "schema": {
            "title": "salesOrderLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"quantity\": 123, \"unitPrice\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\", \"shippedQuantity\": 123, \"invoicedQuantity\": 123, \"invoiceQuantity\": 123, \"shipQuantity\": 123}",
          "required": true,
          "schema": {
            "title": "salesOrderLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesOrderLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shippedQuantity": {
                "type": "number",
                "description": "(v1.0) The shippedQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoicedQuantity": {
                "type": "number",
                "description": "(v1.0) The invoicedQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoiceQuantity": {
                "type": "number",
                "description": "(v1.0) The invoiceQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shipQuantity": {
                "type": "number",
                "description": "(v1.0) The shipQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesOrderLineForSalesOrder"
      },
      "task": true
    },
    {
      "name": "listSalesOrderLines",
      "summary": "listSalesOrderLines",
      "description": "Returns a list of salesOrderLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesOrderLines"
      },
      "task": true
    },
    {
      "name": "postSalesOrderLine",
      "summary": "postSalesOrderLine",
      "description": "Creates an object of type salesOrderLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"quantity\": 123, \"unitPrice\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\", \"shippedQuantity\": 123, \"invoicedQuantity\": 123, \"invoiceQuantity\": 123, \"shipQuantity\": 123}",
          "required": true,
          "schema": {
            "title": "salesOrderLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesOrderLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shippedQuantity": {
                "type": "number",
                "description": "(v1.0) The shippedQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoicedQuantity": {
                "type": "number",
                "description": "(v1.0) The invoicedQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoiceQuantity": {
                "type": "number",
                "description": "(v1.0) The invoiceQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shipQuantity": {
                "type": "number",
                "description": "(v1.0) The shipQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesOrderLine"
      },
      "task": true
    },
    {
      "name": "getSalesOrderLine",
      "summary": "getSalesOrderLine",
      "description": "Retrieve the properties and relationships of an object of type salesOrderLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderLineId",
          "type": "string",
          "info": "(v1.0) id for salesOrderLine: string",
          "required": true,
          "schema": {
            "title": "salesOrderLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesOrderLine"
      },
      "task": true
    },
    {
      "name": "deleteSalesOrderLine",
      "summary": "deleteSalesOrderLine",
      "description": "Deletes an object of type salesOrderLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderLineId",
          "type": "string",
          "info": "(v1.0) id for salesOrderLine: string",
          "required": true,
          "schema": {
            "title": "salesOrderLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesOrderLine"
      },
      "task": true
    },
    {
      "name": "patchSalesOrderLine",
      "summary": "patchSalesOrderLine",
      "description": "Updates an object of type salesOrderLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesOrderLineId",
          "type": "string",
          "info": "(v1.0) id for salesOrderLine: string",
          "required": true,
          "schema": {
            "title": "salesOrderLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"quantity\": 123, \"unitPrice\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\", \"shippedQuantity\": 123, \"invoicedQuantity\": 123, \"invoiceQuantity\": 123, \"shipQuantity\": 123}",
          "required": true,
          "schema": {
            "title": "salesOrderLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesOrderLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shippedQuantity": {
                "type": "number",
                "description": "(v1.0) The shippedQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoicedQuantity": {
                "type": "number",
                "description": "(v1.0) The invoicedQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "invoiceQuantity": {
                "type": "number",
                "description": "(v1.0) The invoiceQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              },
              "shipQuantity": {
                "type": "number",
                "description": "(v1.0) The shipQuantity property for the Dynamics 365 Business Central salesOrderLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesOrderLine"
      },
      "task": true
    },
    {
      "name": "listRetainedEarningsStatement",
      "summary": "listRetainedEarningsStatement",
      "description": "Returns a list of retainedEarningsStatement",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listRetainedEarningsStatement"
      },
      "task": true
    },
    {
      "name": "getRetainedEarningsStatement",
      "summary": "getRetainedEarningsStatement",
      "description": "Retrieve the properties and relationships of an object of type retainedEarningsStatement for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "retainedEarningsStatementLineNumber",
          "type": "number",
          "info": "(v1.0) lineNumber for retainedEarningsStatement: 123",
          "required": true,
          "schema": {
            "title": "retainedEarningsStatementLineNumber",
            "type": "number"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getRetainedEarningsStatement"
      },
      "task": true
    },
    {
      "name": "listUnitsOfMeasure",
      "summary": "listUnitsOfMeasure",
      "description": "Returns a list of unitsOfMeasure",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listUnitsOfMeasure"
      },
      "task": true
    },
    {
      "name": "postUnitOfMeasure",
      "summary": "postUnitOfMeasure",
      "description": "Creates an object of type unitOfMeasure in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"internationalStandardCode\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "unitOfMeasure",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central unitOfMeasure entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central unitOfMeasure entity"
              },
              "displayName": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitOfMeasure entity",
                "x-nullable": true
              },
              "internationalStandardCode": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The internationalStandardCode property for the Dynamics 365 Business Central unitOfMeasure entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central unitOfMeasure entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postUnitOfMeasure"
      },
      "task": true
    },
    {
      "name": "getUnitOfMeasure",
      "summary": "getUnitOfMeasure",
      "description": "Retrieve the properties and relationships of an object of type unitOfMeasure for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "unitOfMeasureId",
          "type": "string",
          "info": "(v1.0) id for unitOfMeasure: string",
          "required": true,
          "schema": {
            "title": "unitOfMeasureId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getUnitOfMeasure"
      },
      "task": true
    },
    {
      "name": "deleteUnitOfMeasure",
      "summary": "deleteUnitOfMeasure",
      "description": "Deletes an object of type unitOfMeasure in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "unitOfMeasureId",
          "type": "string",
          "info": "(v1.0) id for unitOfMeasure: string",
          "required": true,
          "schema": {
            "title": "unitOfMeasureId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteUnitOfMeasure"
      },
      "task": true
    },
    {
      "name": "patchUnitOfMeasure",
      "summary": "patchUnitOfMeasure",
      "description": "Updates an object of type unitOfMeasure in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "unitOfMeasureId",
          "type": "string",
          "info": "(v1.0) id for unitOfMeasure: string",
          "required": true,
          "schema": {
            "title": "unitOfMeasureId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"internationalStandardCode\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "unitOfMeasure",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central unitOfMeasure entity"
              },
              "code": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central unitOfMeasure entity"
              },
              "displayName": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitOfMeasure entity",
                "x-nullable": true
              },
              "internationalStandardCode": {
                "maxLength": 10,
                "type": "string",
                "description": "(v1.0) The internationalStandardCode property for the Dynamics 365 Business Central unitOfMeasure entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central unitOfMeasure entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchUnitOfMeasure"
      },
      "task": true
    },
    {
      "name": "listAgedAccountsReceivable",
      "summary": "listAgedAccountsReceivable",
      "description": "Returns a list of agedAccountsReceivable",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listAgedAccountsReceivable"
      },
      "task": true
    },
    {
      "name": "getAgedAccountsReceivable",
      "summary": "getAgedAccountsReceivable",
      "description": "Retrieve the properties and relationships of an object of type agedAccountsReceivable for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "agedAccountsReceivableCustomerId",
          "type": "string",
          "info": "(v1.0) customerId for agedAccountsReceivable: string",
          "required": true,
          "schema": {
            "title": "agedAccountsReceivableCustomerId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getAgedAccountsReceivable"
      },
      "task": true
    },
    {
      "name": "listAgedAccountsPayable",
      "summary": "listAgedAccountsPayable",
      "description": "Returns a list of agedAccountsPayable",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listAgedAccountsPayable"
      },
      "task": true
    },
    {
      "name": "getAgedAccountsPayable",
      "summary": "getAgedAccountsPayable",
      "description": "Retrieve the properties and relationships of an object of type agedAccountsPayable for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "agedAccountsPayableVendorId",
          "type": "string",
          "info": "(v1.0) vendorId for agedAccountsPayable: string",
          "required": true,
          "schema": {
            "title": "agedAccountsPayableVendorId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getAgedAccountsPayable"
      },
      "task": true
    },
    {
      "name": "listBalanceSheet",
      "summary": "listBalanceSheet",
      "description": "Returns a list of balanceSheet",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listBalanceSheet"
      },
      "task": true
    },
    {
      "name": "getBalanceSheet",
      "summary": "getBalanceSheet",
      "description": "Retrieve the properties and relationships of an object of type balanceSheet for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "balanceSheetLineNumber",
          "type": "number",
          "info": "(v1.0) lineNumber for balanceSheet: 123",
          "required": true,
          "schema": {
            "title": "balanceSheetLineNumber",
            "type": "number"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getBalanceSheet"
      },
      "task": true
    },
    {
      "name": "listTrialBalance",
      "summary": "listTrialBalance",
      "description": "Returns a list of trialBalance",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listTrialBalance"
      },
      "task": true
    },
    {
      "name": "getTrialBalance",
      "summary": "getTrialBalance",
      "description": "Retrieve the properties and relationships of an object of type trialBalance for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "trialBalanceNumber",
          "type": "string",
          "info": "(v1.0) number for trialBalance: string",
          "required": true,
          "schema": {
            "title": "trialBalanceNumber",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getTrialBalance"
      },
      "task": true
    },
    {
      "name": "listIncomeStatement",
      "summary": "listIncomeStatement",
      "description": "Returns a list of incomeStatement",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listIncomeStatement"
      },
      "task": true
    },
    {
      "name": "getIncomeStatement",
      "summary": "getIncomeStatement",
      "description": "Retrieve the properties and relationships of an object of type incomeStatement for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "incomeStatementLineNumber",
          "type": "number",
          "info": "(v1.0) lineNumber for incomeStatement: 123",
          "required": true,
          "schema": {
            "title": "incomeStatementLineNumber",
            "type": "number"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getIncomeStatement"
      },
      "task": true
    },
    {
      "name": "listTaxAreas",
      "summary": "listTaxAreas",
      "description": "Returns a list of taxAreas",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listTaxAreas"
      },
      "task": true
    },
    {
      "name": "postTaxArea",
      "summary": "postTaxArea",
      "description": "Creates an object of type taxArea in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"taxType\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "taxArea",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central taxArea entity"
              },
              "code": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central taxArea entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central taxArea entity",
                "x-nullable": true
              },
              "taxType": {
                "type": "string",
                "description": "(v1.0) The taxType property for the Dynamics 365 Business Central taxArea entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central taxArea entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postTaxArea"
      },
      "task": true
    },
    {
      "name": "getTaxArea",
      "summary": "getTaxArea",
      "description": "Retrieve the properties and relationships of an object of type taxArea for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "taxAreaId",
          "type": "string",
          "info": "(v1.0) id for taxArea: string",
          "required": true,
          "schema": {
            "title": "taxAreaId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getTaxArea"
      },
      "task": true
    },
    {
      "name": "deleteTaxArea",
      "summary": "deleteTaxArea",
      "description": "Deletes an object of type taxArea in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "taxAreaId",
          "type": "string",
          "info": "(v1.0) id for taxArea: string",
          "required": true,
          "schema": {
            "title": "taxAreaId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteTaxArea"
      },
      "task": true
    },
    {
      "name": "patchTaxArea",
      "summary": "patchTaxArea",
      "description": "Updates an object of type taxArea in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "taxAreaId",
          "type": "string",
          "info": "(v1.0) id for taxArea: string",
          "required": true,
          "schema": {
            "title": "taxAreaId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"taxType\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "taxArea",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central taxArea entity"
              },
              "code": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The code property for the Dynamics 365 Business Central taxArea entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central taxArea entity",
                "x-nullable": true
              },
              "taxType": {
                "type": "string",
                "description": "(v1.0) The taxType property for the Dynamics 365 Business Central taxArea entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central taxArea entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchTaxArea"
      },
      "task": true
    },
    {
      "name": "listSalesQuotes",
      "summary": "listSalesQuotes",
      "description": "Returns a list of salesQuotes",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesQuotes"
      },
      "task": true
    },
    {
      "name": "postSalesQuote",
      "summary": "postSalesQuote",
      "description": "Creates an object of type salesQuote in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"externalDocumentNumber\": \"string\", \"documentDate\": \"string\", \"dueDate\": \"string\", \"customerId\": \"string\", \"contactId\": \"string\", \"customerNumber\": \"string\", \"customerName\": \"string\", \"billToName\": \"string\", \"billToCustomerId\": \"string\", \"billToCustomerNumber\": \"string\", \"shipToName\": \"string\", \"shipToContact\": \"string\", \"sellingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"billingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"shippingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"salesperson\": \"string\", \"discountAmount\": 123, \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"status\": \"string\", \"sentDate\": \"string\", \"validUntilDate\": \"string\", \"acceptedDate\": \"string\", \"lastModifiedDateTime\": \"string\", \"phoneNumber\": \"string\", \"email\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesQuote1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesQuote entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "documentDate": {
                "type": "string",
                "description": "(v1.0) The documentDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "dueDate": {
                "type": "string",
                "description": "(v1.0) The dueDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "customerName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The customerName property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "billToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The billToName property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "billToCustomerId": {
                "type": "string",
                "description": "(v1.0) The billToCustomerId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "billToCustomerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The billToCustomerNumber property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "shipToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToName property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "shipToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToContact property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "sellingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "billingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "shippingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "salesperson": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The salesperson property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "sentDate": {
                "type": "string",
                "description": "(v1.0) The sentDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "validUntilDate": {
                "type": "string",
                "description": "(v1.0) The validUntilDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "acceptedDate": {
                "type": "string",
                "description": "(v1.0) The acceptedDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesQuote"
      },
      "task": true
    },
    {
      "name": "getSalesQuote",
      "summary": "getSalesQuote",
      "description": "Retrieve the properties and relationships of an object of type salesQuote for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesQuote"
      },
      "task": true
    },
    {
      "name": "deleteSalesQuote",
      "summary": "deleteSalesQuote",
      "description": "Deletes an object of type salesQuote in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesQuote"
      },
      "task": true
    },
    {
      "name": "patchSalesQuote",
      "summary": "patchSalesQuote",
      "description": "Updates an object of type salesQuote in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"externalDocumentNumber\": \"string\", \"documentDate\": \"string\", \"dueDate\": \"string\", \"customerId\": \"string\", \"contactId\": \"string\", \"customerNumber\": \"string\", \"customerName\": \"string\", \"billToName\": \"string\", \"billToCustomerId\": \"string\", \"billToCustomerNumber\": \"string\", \"shipToName\": \"string\", \"shipToContact\": \"string\", \"sellingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"billingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"shippingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"salesperson\": \"string\", \"discountAmount\": 123, \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"status\": \"string\", \"sentDate\": \"string\", \"validUntilDate\": \"string\", \"acceptedDate\": \"string\", \"lastModifiedDateTime\": \"string\", \"phoneNumber\": \"string\", \"email\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesQuote1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesQuote entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "documentDate": {
                "type": "string",
                "description": "(v1.0) The documentDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "dueDate": {
                "type": "string",
                "description": "(v1.0) The dueDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "customerName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The customerName property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "billToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The billToName property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "billToCustomerId": {
                "type": "string",
                "description": "(v1.0) The billToCustomerId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "billToCustomerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The billToCustomerNumber property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "shipToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToName property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "shipToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToContact property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "sellingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "billingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "shippingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "salesperson": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The salesperson property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "sentDate": {
                "type": "string",
                "description": "(v1.0) The sentDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "validUntilDate": {
                "type": "string",
                "description": "(v1.0) The validUntilDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "acceptedDate": {
                "type": "string",
                "description": "(v1.0) The acceptedDate property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central salesQuote entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesQuote"
      },
      "task": true
    },
    {
      "name": "makeInvoiceActionSalesQuotes",
      "summary": "makeInvoiceActionSalesQuotes",
      "description": "Performs the makeInvoice action for salesQuotes entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/makeInvoiceActionSalesQuotes"
      },
      "task": true
    },
    {
      "name": "makeOrderActionSalesQuotes",
      "summary": "makeOrderActionSalesQuotes",
      "description": "Performs the makeOrder action for salesQuotes entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/makeOrderActionSalesQuotes"
      },
      "task": true
    },
    {
      "name": "sendActionSalesQuotes",
      "summary": "sendActionSalesQuotes",
      "description": "Performs the send action for salesQuotes entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/sendActionSalesQuotes"
      },
      "task": true
    },
    {
      "name": "listSalesQuoteLinesForSalesQuote",
      "summary": "listSalesQuoteLinesForSalesQuote",
      "description": "Returns a list of salesQuoteLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesQuoteLinesForSalesQuote"
      },
      "task": true
    },
    {
      "name": "postSalesQuoteLineForSalesQuote",
      "summary": "postSalesQuoteLineForSalesQuote",
      "description": "Creates an object of type salesQuoteLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123}",
          "required": true,
          "schema": {
            "title": "salesQuoteLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesQuoteLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesQuoteLineForSalesQuote"
      },
      "task": true
    },
    {
      "name": "getSalesQuoteLineForSalesQuote",
      "summary": "getSalesQuoteLineForSalesQuote",
      "description": "Retrieve the properties and relationships of an object of type salesQuoteLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteLineId",
          "type": "string",
          "info": "(v1.0) id for salesQuoteLine: string",
          "required": true,
          "schema": {
            "title": "salesQuoteLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesQuoteLineForSalesQuote"
      },
      "task": true
    },
    {
      "name": "deleteSalesQuoteLineForSalesQuote",
      "summary": "deleteSalesQuoteLineForSalesQuote",
      "description": "Deletes an object of type salesQuoteLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteLineId",
          "type": "string",
          "info": "(v1.0) id for salesQuoteLine: string",
          "required": true,
          "schema": {
            "title": "salesQuoteLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesQuoteLineForSalesQuote"
      },
      "task": true
    },
    {
      "name": "patchSalesQuoteLineForSalesQuote",
      "summary": "patchSalesQuoteLineForSalesQuote",
      "description": "Updates an object of type salesQuoteLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteId",
          "type": "string",
          "info": "(v1.0) id for salesQuote: string",
          "required": true,
          "schema": {
            "title": "salesQuoteId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteLineId",
          "type": "string",
          "info": "(v1.0) id for salesQuoteLine: string",
          "required": true,
          "schema": {
            "title": "salesQuoteLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123}",
          "required": true,
          "schema": {
            "title": "salesQuoteLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesQuoteLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesQuoteLineForSalesQuote"
      },
      "task": true
    },
    {
      "name": "listSalesQuoteLines",
      "summary": "listSalesQuoteLines",
      "description": "Returns a list of salesQuoteLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesQuoteLines"
      },
      "task": true
    },
    {
      "name": "postSalesQuoteLine",
      "summary": "postSalesQuoteLine",
      "description": "Creates an object of type salesQuoteLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123}",
          "required": true,
          "schema": {
            "title": "salesQuoteLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesQuoteLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesQuoteLine"
      },
      "task": true
    },
    {
      "name": "getSalesQuoteLine",
      "summary": "getSalesQuoteLine",
      "description": "Retrieve the properties and relationships of an object of type salesQuoteLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteLineId",
          "type": "string",
          "info": "(v1.0) id for salesQuoteLine: string",
          "required": true,
          "schema": {
            "title": "salesQuoteLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesQuoteLine"
      },
      "task": true
    },
    {
      "name": "deleteSalesQuoteLine",
      "summary": "deleteSalesQuoteLine",
      "description": "Deletes an object of type salesQuoteLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteLineId",
          "type": "string",
          "info": "(v1.0) id for salesQuoteLine: string",
          "required": true,
          "schema": {
            "title": "salesQuoteLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesQuoteLine"
      },
      "task": true
    },
    {
      "name": "patchSalesQuoteLine",
      "summary": "patchSalesQuoteLine",
      "description": "Updates an object of type salesQuoteLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesQuoteLineId",
          "type": "string",
          "info": "(v1.0) id for salesQuoteLine: string",
          "required": true,
          "schema": {
            "title": "salesQuoteLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123}",
          "required": true,
          "schema": {
            "title": "salesQuoteLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesQuoteLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesQuoteLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesQuoteLine"
      },
      "task": true
    },
    {
      "name": "listSalesCreditMemos",
      "summary": "listSalesCreditMemos",
      "description": "Returns a list of salesCreditMemos",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesCreditMemos"
      },
      "task": true
    },
    {
      "name": "postSalesCreditMemo",
      "summary": "postSalesCreditMemo",
      "description": "Creates an object of type salesCreditMemo in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"externalDocumentNumber\": \"string\", \"creditMemoDate\": \"string\", \"dueDate\": \"string\", \"customerId\": \"string\", \"contactId\": \"string\", \"customerNumber\": \"string\", \"customerName\": \"string\", \"billToName\": \"string\", \"billToCustomerId\": \"string\", \"billToCustomerNumber\": \"string\", \"sellingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"billingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"salesperson\": \"string\", \"pricesIncludeTax\": \"boolean\", \"discountAmount\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"status\": \"string\", \"lastModifiedDateTime\": \"string\", \"invoiceId\": \"string\", \"invoiceNumber\": \"string\", \"phoneNumber\": \"string\", \"email\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesCreditMemo1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesCreditMemo entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "creditMemoDate": {
                "type": "string",
                "description": "(v1.0) The creditMemoDate property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "dueDate": {
                "type": "string",
                "description": "(v1.0) The dueDate property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "customerName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The customerName property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "billToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The billToName property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "billToCustomerId": {
                "type": "string",
                "description": "(v1.0) The billToCustomerId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "billToCustomerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The billToCustomerNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "sellingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "billingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "salesperson": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The salesperson property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "pricesIncludeTax": {
                "type": "boolean",
                "description": "(v1.0) The pricesIncludeTax property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "invoiceId": {
                "type": "string",
                "description": "(v1.0) The invoiceId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "invoiceNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The invoiceNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "getSalesCreditMemo",
      "summary": "getSalesCreditMemo",
      "description": "Retrieve the properties and relationships of an object of type salesCreditMemo for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "deleteSalesCreditMemo",
      "summary": "deleteSalesCreditMemo",
      "description": "Deletes an object of type salesCreditMemo in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "patchSalesCreditMemo",
      "summary": "patchSalesCreditMemo",
      "description": "Updates an object of type salesCreditMemo in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"externalDocumentNumber\": \"string\", \"creditMemoDate\": \"string\", \"dueDate\": \"string\", \"customerId\": \"string\", \"contactId\": \"string\", \"customerNumber\": \"string\", \"customerName\": \"string\", \"billToName\": \"string\", \"billToCustomerId\": \"string\", \"billToCustomerNumber\": \"string\", \"sellingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"billingPostalAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"paymentTermsId\": \"string\", \"shipmentMethodId\": \"string\", \"salesperson\": \"string\", \"pricesIncludeTax\": \"boolean\", \"discountAmount\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"status\": \"string\", \"lastModifiedDateTime\": \"string\", \"invoiceId\": \"string\", \"invoiceNumber\": \"string\", \"phoneNumber\": \"string\", \"email\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesCreditMemo1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesCreditMemo entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "externalDocumentNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The externalDocumentNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "creditMemoDate": {
                "type": "string",
                "description": "(v1.0) The creditMemoDate property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "dueDate": {
                "type": "string",
                "description": "(v1.0) The dueDate property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "customerId": {
                "type": "string",
                "description": "(v1.0) The customerId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "contactId": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The contactId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "customerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The customerNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "customerName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The customerName property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "billToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The billToName property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "billToCustomerId": {
                "type": "string",
                "description": "(v1.0) The billToCustomerId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "billToCustomerNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The billToCustomerNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "sellingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "billingPostalAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "paymentTermsId": {
                "type": "string",
                "description": "(v1.0) The paymentTermsId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "shipmentMethodId": {
                "type": "string",
                "description": "(v1.0) The shipmentMethodId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "salesperson": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The salesperson property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "pricesIncludeTax": {
                "type": "boolean",
                "description": "(v1.0) The pricesIncludeTax property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "invoiceId": {
                "type": "string",
                "description": "(v1.0) The invoiceId property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "invoiceNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The invoiceNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "phoneNumber": {
                "maxLength": 30,
                "type": "string",
                "description": "(v1.0) The phoneNumber property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              },
              "email": {
                "maxLength": 80,
                "type": "string",
                "description": "(v1.0) The email property for the Dynamics 365 Business Central salesCreditMemo entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "cancelAndSendActionSalesCreditMemos",
      "summary": "cancelAndSendActionSalesCreditMemos",
      "description": "Performs the cancelAndSend action for salesCreditMemos entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/cancelAndSendActionSalesCreditMemos"
      },
      "task": true
    },
    {
      "name": "cancelActionSalesCreditMemos",
      "summary": "cancelActionSalesCreditMemos",
      "description": "Performs the cancel action for salesCreditMemos entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/cancelActionSalesCreditMemos"
      },
      "task": true
    },
    {
      "name": "postAndSendActionSalesCreditMemos",
      "summary": "postAndSendActionSalesCreditMemos",
      "description": "Performs the postAndSend action for salesCreditMemos entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postAndSendActionSalesCreditMemos"
      },
      "task": true
    },
    {
      "name": "postActionSalesCreditMemos",
      "summary": "postActionSalesCreditMemos",
      "description": "Performs the post action for salesCreditMemos entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postActionSalesCreditMemos"
      },
      "task": true
    },
    {
      "name": "sendActionSalesCreditMemos",
      "summary": "sendActionSalesCreditMemos",
      "description": "Performs the send action for salesCreditMemos entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/sendActionSalesCreditMemos"
      },
      "task": true
    },
    {
      "name": "listSalesCreditMemoLinesForSalesCreditMemo",
      "summary": "listSalesCreditMemoLinesForSalesCreditMemo",
      "description": "Returns a list of salesCreditMemoLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesCreditMemoLinesForSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "postSalesCreditMemoLineForSalesCreditMemo",
      "summary": "postSalesCreditMemoLineForSalesCreditMemo",
      "description": "Creates an object of type salesCreditMemoLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesCreditMemoLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesCreditMemoLineForSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "getSalesCreditMemoLineForSalesCreditMemo",
      "summary": "getSalesCreditMemoLineForSalesCreditMemo",
      "description": "Retrieve the properties and relationships of an object of type salesCreditMemoLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoLineId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemoLine: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesCreditMemoLineForSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "deleteSalesCreditMemoLineForSalesCreditMemo",
      "summary": "deleteSalesCreditMemoLineForSalesCreditMemo",
      "description": "Deletes an object of type salesCreditMemoLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoLineId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemoLine: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesCreditMemoLineForSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "patchSalesCreditMemoLineForSalesCreditMemo",
      "summary": "patchSalesCreditMemoLineForSalesCreditMemo",
      "description": "Updates an object of type salesCreditMemoLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemo: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoLineId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemoLine: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesCreditMemoLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesCreditMemoLineForSalesCreditMemo"
      },
      "task": true
    },
    {
      "name": "listSalesCreditMemoLines",
      "summary": "listSalesCreditMemoLines",
      "description": "Returns a list of salesCreditMemoLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listSalesCreditMemoLines"
      },
      "task": true
    },
    {
      "name": "postSalesCreditMemoLine",
      "summary": "postSalesCreditMemoLine",
      "description": "Creates an object of type salesCreditMemoLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesCreditMemoLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postSalesCreditMemoLine"
      },
      "task": true
    },
    {
      "name": "getSalesCreditMemoLine",
      "summary": "getSalesCreditMemoLine",
      "description": "Retrieve the properties and relationships of an object of type salesCreditMemoLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoLineId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemoLine: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getSalesCreditMemoLine"
      },
      "task": true
    },
    {
      "name": "deleteSalesCreditMemoLine",
      "summary": "deleteSalesCreditMemoLine",
      "description": "Deletes an object of type salesCreditMemoLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoLineId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemoLine: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteSalesCreditMemoLine"
      },
      "task": true
    },
    {
      "name": "patchSalesCreditMemoLine",
      "summary": "patchSalesCreditMemoLine",
      "description": "Updates an object of type salesCreditMemoLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "salesCreditMemoLineId",
          "type": "string",
          "info": "(v1.0) id for salesCreditMemoLine: string",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasureId\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitPrice\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"shipmentDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "salesCreditMemoLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central salesCreditMemoLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "unitOfMeasureId": {
                "type": "string",
                "description": "(v1.0) The unitOfMeasureId property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitPrice": {
                "type": "number",
                "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              },
              "shipmentDate": {
                "type": "string",
                "description": "(v1.0) The shipmentDate property for the Dynamics 365 Business Central salesCreditMemoLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchSalesCreditMemoLine"
      },
      "task": true
    },
    {
      "name": "listGeneralLedgerEntryAttachments",
      "summary": "listGeneralLedgerEntryAttachments",
      "description": "Returns a list of generalLedgerEntryAttachments",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listGeneralLedgerEntryAttachments"
      },
      "task": true
    },
    {
      "name": "postGeneralLedgerEntryAttachments",
      "summary": "postGeneralLedgerEntryAttachments",
      "description": "Creates an object of type generalLedgerEntryAttachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"generalLedgerEntryNumber\": 123, \"id\": \"string\", \"fileName\": \"string\", \"byteSize\": 123, \"content\": \"string\", \"createdDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryAttachments1",
            "type": "object",
            "properties": {
              "generalLedgerEntryNumber": {
                "type": "integer",
                "description": "(v1.0) The generalLedgerEntryNumber property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity"
              },
              "fileName": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The fileName property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity",
                "x-nullable": true
              },
              "byteSize": {
                "type": "integer",
                "description": "(v1.0) The byteSize property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity",
                "x-nullable": true
              },
              "createdDateTime": {
                "type": "string",
                "description": "(v1.0) The createdDateTime property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postGeneralLedgerEntryAttachments"
      },
      "task": true
    },
    {
      "name": "getGeneralLedgerEntryAttachments",
      "summary": "getGeneralLedgerEntryAttachments",
      "description": "Retrieve the properties and relationships of an object of type generalLedgerEntryAttachments for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "generalLedgerEntryAttachmentsGeneralLedgerEntryNumber",
          "type": "number",
          "info": "(v1.0) generalLedgerEntryNumber for generalLedgerEntryAttachments: 123",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryAttachmentsGeneralLedgerEntryNumber",
            "type": "number"
          }
        },
        {
          "name": "generalLedgerEntryAttachmentsId",
          "type": "string",
          "info": "(v1.0) id for generalLedgerEntryAttachments: string",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryAttachmentsId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getGeneralLedgerEntryAttachments"
      },
      "task": true
    },
    {
      "name": "deleteGeneralLedgerEntryAttachments",
      "summary": "deleteGeneralLedgerEntryAttachments",
      "description": "Deletes an object of type generalLedgerEntryAttachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "generalLedgerEntryAttachmentsGeneralLedgerEntryNumber",
          "type": "number",
          "info": "(v1.0) generalLedgerEntryNumber for generalLedgerEntryAttachments: 123",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryAttachmentsGeneralLedgerEntryNumber",
            "type": "number"
          }
        },
        {
          "name": "generalLedgerEntryAttachmentsId",
          "type": "string",
          "info": "(v1.0) id for generalLedgerEntryAttachments: string",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryAttachmentsId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteGeneralLedgerEntryAttachments"
      },
      "task": true
    },
    {
      "name": "patchGeneralLedgerEntryAttachments",
      "summary": "patchGeneralLedgerEntryAttachments",
      "description": "Updates an object of type generalLedgerEntryAttachments in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "generalLedgerEntryAttachmentsGeneralLedgerEntryNumber",
          "type": "number",
          "info": "(v1.0) generalLedgerEntryNumber for generalLedgerEntryAttachments: 123",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryAttachmentsGeneralLedgerEntryNumber",
            "type": "number"
          }
        },
        {
          "name": "generalLedgerEntryAttachmentsId",
          "type": "string",
          "info": "(v1.0) id for generalLedgerEntryAttachments: string",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryAttachmentsId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"generalLedgerEntryNumber\": 123, \"id\": \"string\", \"fileName\": \"string\", \"byteSize\": 123, \"content\": \"string\", \"createdDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "generalLedgerEntryAttachments1",
            "type": "object",
            "properties": {
              "generalLedgerEntryNumber": {
                "type": "integer",
                "description": "(v1.0) The generalLedgerEntryNumber property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity"
              },
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity"
              },
              "fileName": {
                "maxLength": 250,
                "type": "string",
                "description": "(v1.0) The fileName property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity",
                "x-nullable": true
              },
              "byteSize": {
                "type": "integer",
                "description": "(v1.0) The byteSize property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity",
                "x-nullable": true
              },
              "content": {
                "type": "string",
                "description": "(v1.0) The content property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity",
                "x-nullable": true
              },
              "createdDateTime": {
                "type": "string",
                "description": "(v1.0) The createdDateTime property for the Dynamics 365 Business Central generalLedgerEntryAttachments entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchGeneralLedgerEntryAttachments"
      },
      "task": true
    },
    {
      "name": "listPurchaseInvoices",
      "summary": "listPurchaseInvoices",
      "description": "Returns a list of purchaseInvoices",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPurchaseInvoices"
      },
      "task": true
    },
    {
      "name": "postPurchaseInvoice",
      "summary": "postPurchaseInvoice",
      "description": "Creates an object of type purchaseInvoice in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"invoiceDate\": \"string\", \"dueDate\": \"string\", \"vendorInvoiceNumber\": \"string\", \"vendorId\": \"string\", \"vendorNumber\": \"string\", \"vendorName\": \"string\", \"payToName\": \"string\", \"payToContact\": \"string\", \"payToVendorId\": \"string\", \"payToVendorNumber\": \"string\", \"shipToName\": \"string\", \"shipToContact\": \"string\", \"buyFromAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"payToAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"shipToAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"pricesIncludeTax\": \"boolean\", \"discountAmount\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"status\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "purchaseInvoice1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central purchaseInvoice entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "invoiceDate": {
                "type": "string",
                "description": "(v1.0) The invoiceDate property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "dueDate": {
                "type": "string",
                "description": "(v1.0) The dueDate property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "vendorInvoiceNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The vendorInvoiceNumber property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "vendorId": {
                "type": "string",
                "description": "(v1.0) The vendorId property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "vendorNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The vendorNumber property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "vendorName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The vendorName property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "payToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The payToName property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "payToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The payToContact property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "payToVendorId": {
                "type": "string",
                "description": "(v1.0) The payToVendorId property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "payToVendorNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The payToVendorNumber property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "shipToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToName property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "shipToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToContact property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "buyFromAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "payToAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "shipToAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "pricesIncludeTax": {
                "type": "boolean",
                "description": "(v1.0) The pricesIncludeTax property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "getPurchaseInvoice",
      "summary": "getPurchaseInvoice",
      "description": "Retrieve the properties and relationships of an object of type purchaseInvoice for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "deletePurchaseInvoice",
      "summary": "deletePurchaseInvoice",
      "description": "Deletes an object of type purchaseInvoice in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "patchPurchaseInvoice",
      "summary": "patchPurchaseInvoice",
      "description": "Updates an object of type purchaseInvoice in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"invoiceDate\": \"string\", \"dueDate\": \"string\", \"vendorInvoiceNumber\": \"string\", \"vendorId\": \"string\", \"vendorNumber\": \"string\", \"vendorName\": \"string\", \"payToName\": \"string\", \"payToContact\": \"string\", \"payToVendorId\": \"string\", \"payToVendorNumber\": \"string\", \"shipToName\": \"string\", \"shipToContact\": \"string\", \"buyFromAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"payToAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"shipToAddress\": {\"street\": \"string\", \"city\": \"string\", \"state\": \"string\", \"countryLetterCode\": \"string\", \"postalCode\": \"string\", \"customerFinancialDetails\": [{\"id\": \"string\", \"number\": \"string\", \"balance\": 123, \"totalSalesExcludingTax\": 123, \"overdueAmount\": 123}], \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"currency\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"amountDecimalPlaces\": \"string\", \"amountRoundingPrecision\": 123, \"lastModifiedDateTime\": \"string\"}, \"paymentTerm\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"dueDateCalculation\": \"string\", \"discountDateCalculation\": \"string\", \"discountPercent\": 123, \"calculateDiscountOnCreditMemos\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"shipmentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}, \"paymentMethod\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"currencyId\": \"string\", \"currencyCode\": \"string\", \"pricesIncludeTax\": \"boolean\", \"discountAmount\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"totalAmountExcludingTax\": 123, \"totalTaxAmount\": 123, \"totalAmountIncludingTax\": 123, \"status\": \"string\", \"lastModifiedDateTime\": \"string\"}",
          "required": true,
          "schema": {
            "title": "purchaseInvoice1",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central purchaseInvoice entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "invoiceDate": {
                "type": "string",
                "description": "(v1.0) The invoiceDate property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "dueDate": {
                "type": "string",
                "description": "(v1.0) The dueDate property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "vendorInvoiceNumber": {
                "maxLength": 35,
                "type": "string",
                "description": "(v1.0) The vendorInvoiceNumber property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "vendorId": {
                "type": "string",
                "description": "(v1.0) The vendorId property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "vendorNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The vendorNumber property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "vendorName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The vendorName property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "payToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The payToName property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "payToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The payToContact property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "payToVendorId": {
                "type": "string",
                "description": "(v1.0) The payToVendorId property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "payToVendorNumber": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The payToVendorNumber property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "shipToName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToName property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "shipToContact": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The shipToContact property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "buyFromAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "payToAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "shipToAddress": {
                "title": "postaladdresstype",
                "type": "object",
                "properties": {
                  "street": {
                    "maxLength": 152,
                    "type": "string",
                    "description": "(v1.0) The street property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "city": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The city property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "state": {
                    "maxLength": 30,
                    "type": "string",
                    "description": "(v1.0) The state property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "countryLetterCode": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The countryLetterCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "postalCode": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The postalCode property for the Dynamics 365 Business Central postaladdresstype entity",
                    "x-nullable": true
                  },
                  "customerFinancialDetails": {
                    "type": "array",
                    "items": {
                      "title": "customerFinancialDetail",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central customerFinancialDetail entity"
                        },
                        "number": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The number property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "balance": {
                          "type": "number",
                          "description": "(v1.0) The balance property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "totalSalesExcludingTax": {
                          "type": "number",
                          "description": "(v1.0) The totalSalesExcludingTax property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        },
                        "overdueAmount": {
                          "type": "number",
                          "description": "(v1.0) The overdueAmount property for the Dynamics 365 Business Central customerFinancialDetail entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "currency": {
                    "title": "currency",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central currency entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central currency entity"
                      },
                      "displayName": {
                        "maxLength": 30,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "symbol": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The symbol property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountDecimalPlaces": {
                        "maxLength": 5,
                        "type": "string",
                        "description": "(v1.0) The amountDecimalPlaces property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "amountRoundingPrecision": {
                        "type": "number",
                        "description": "(v1.0) The amountRoundingPrecision property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central currency entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentTerm": {
                    "title": "paymentTerm",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentTerm entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "dueDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The dueDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountDateCalculation": {
                        "type": "string",
                        "description": "(v1.0) The discountDateCalculation property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "discountPercent": {
                        "type": "number",
                        "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "calculateDiscountOnCreditMemos": {
                        "type": "boolean",
                        "description": "(v1.0) The calculateDiscountOnCreditMemos property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentTerm entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "shipmentMethod": {
                    "title": "shipmentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central shipmentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central shipmentMethod entity",
                        "x-nullable": true
                      }
                    }
                  },
                  "paymentMethod": {
                    "title": "paymentMethod",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "code": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central paymentMethod entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central paymentMethod entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "currencyId": {
                "type": "string",
                "description": "(v1.0) The currencyId property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "currencyCode": {
                "type": "string",
                "description": "(v1.0) The currencyCode property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "pricesIncludeTax": {
                "type": "boolean",
                "description": "(v1.0) The pricesIncludeTax property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "totalAmountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountExcludingTax property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "totalAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The totalAmountIncludingTax property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "status": {
                "type": "string",
                "description": "(v1.0) The status property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              },
              "lastModifiedDateTime": {
                "type": "string",
                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central purchaseInvoice entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "postActionPurchaseInvoices",
      "summary": "postActionPurchaseInvoices",
      "description": "Performs the post action for purchaseInvoices entity",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postActionPurchaseInvoices"
      },
      "task": true
    },
    {
      "name": "listPurchaseInvoiceLinesForPurchaseInvoice",
      "summary": "listPurchaseInvoiceLinesForPurchaseInvoice",
      "description": "Returns a list of purchaseInvoiceLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPurchaseInvoiceLinesForPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "postPurchaseInvoiceLineForPurchaseInvoice",
      "summary": "postPurchaseInvoiceLineForPurchaseInvoice",
      "description": "Creates an object of type purchaseInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitCost\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"expectedReceiptDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central purchaseInvoiceLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitCost": {
                "type": "number",
                "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "expectedReceiptDate": {
                "type": "string",
                "description": "(v1.0) The expectedReceiptDate property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postPurchaseInvoiceLineForPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "getPurchaseInvoiceLineForPurchaseInvoice",
      "summary": "getPurchaseInvoiceLineForPurchaseInvoice",
      "description": "Retrieve the properties and relationships of an object of type purchaseInvoiceLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPurchaseInvoiceLineForPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "deletePurchaseInvoiceLineForPurchaseInvoice",
      "summary": "deletePurchaseInvoiceLineForPurchaseInvoice",
      "description": "Deletes an object of type purchaseInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePurchaseInvoiceLineForPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "patchPurchaseInvoiceLineForPurchaseInvoice",
      "summary": "patchPurchaseInvoiceLineForPurchaseInvoice",
      "description": "Updates an object of type purchaseInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoice: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitCost\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"expectedReceiptDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central purchaseInvoiceLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitCost": {
                "type": "number",
                "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "expectedReceiptDate": {
                "type": "string",
                "description": "(v1.0) The expectedReceiptDate property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPurchaseInvoiceLineForPurchaseInvoice"
      },
      "task": true
    },
    {
      "name": "listPurchaseInvoiceLines",
      "summary": "listPurchaseInvoiceLines",
      "description": "Returns a list of purchaseInvoiceLines",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listPurchaseInvoiceLines"
      },
      "task": true
    },
    {
      "name": "postPurchaseInvoiceLine",
      "summary": "postPurchaseInvoiceLine",
      "description": "Creates an object of type purchaseInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitCost\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"expectedReceiptDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central purchaseInvoiceLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitCost": {
                "type": "number",
                "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "expectedReceiptDate": {
                "type": "string",
                "description": "(v1.0) The expectedReceiptDate property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postPurchaseInvoiceLine"
      },
      "task": true
    },
    {
      "name": "getPurchaseInvoiceLine",
      "summary": "getPurchaseInvoiceLine",
      "description": "Retrieve the properties and relationships of an object of type purchaseInvoiceLine for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLineId",
            "type": "string"
          }
        },
        {
          "name": "expand",
          "type": "array",
          "info": "(v1.0) Entities to expand: array",
          "required": false,
          "schema": {
            "title": "expand",
            "type": "array"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getPurchaseInvoiceLine"
      },
      "task": true
    },
    {
      "name": "deletePurchaseInvoiceLine",
      "summary": "deletePurchaseInvoiceLine",
      "description": "Deletes an object of type purchaseInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLineId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deletePurchaseInvoiceLine"
      },
      "task": true
    },
    {
      "name": "patchPurchaseInvoiceLine",
      "summary": "patchPurchaseInvoiceLine",
      "description": "Updates an object of type purchaseInvoiceLine in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "purchaseInvoiceLineId",
          "type": "string",
          "info": "(v1.0) id for purchaseInvoiceLine: string",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLineId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"documentId\": \"string\", \"sequence\": 123, \"itemId\": \"string\", \"accountId\": \"string\", \"lineType\": \"string\", \"lineDetails\": {\"number\": \"string\", \"displayName\": \"string\", \"item\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"type\": \"string\", \"itemCategoryId\": \"string\", \"itemCategoryCode\": \"string\", \"blocked\": \"boolean\", \"baseUnitOfMeasureId\": \"string\", \"baseUnitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"gtin\": \"string\", \"inventory\": 123, \"unitPrice\": 123, \"priceIncludesTax\": \"boolean\", \"unitCost\": 123, \"taxGroupId\": \"string\", \"taxGroupCode\": \"string\", \"lastModifiedDateTime\": \"string\", \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}}, \"description\": \"string\", \"unitOfMeasure\": {\"code\": \"string\", \"displayName\": \"string\", \"symbol\": \"string\", \"unitConversion\": {\"toUnitOfMeasure\": \"string\", \"fromToConversionRate\": 123, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"picture\": [{\"id\": \"string\", \"width\": 123, \"height\": 123, \"contentType\": \"string\", \"content@odata.mediaEditLink\": \"string\", \"content@odata.mediaReadLink\": \"string\"}], \"defaultDimensions\": [{\"parentId\": \"string\", \"dimensionId\": \"string\", \"dimensionCode\": \"string\", \"dimensionValueId\": \"string\", \"dimensionValueCode\": \"string\", \"postingValidation\": \"string\", \"account\": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\", \"category\": \"string\", \"subCategory\": \"string\", \"blocked\": \"boolean\", \"lastModifiedDateTime\": \"string\"}, \"dimension\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\", \"dimensionValues\": [{\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}]}, \"dimensionValue\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}], \"itemCategory\": {\"id\": \"string\", \"code\": \"string\", \"displayName\": \"string\", \"lastModifiedDateTime\": \"string\"}}, \"unitCost\": 123, \"quantity\": 123, \"discountAmount\": 123, \"discountPercent\": 123, \"discountAppliedBeforeTax\": \"boolean\", \"amountExcludingTax\": 123, \"taxCode\": \"string\", \"taxPercent\": 123, \"totalTaxAmount\": 123, \"amountIncludingTax\": 123, \"invoiceDiscountAllocation\": 123, \"netAmount\": 123, \"netTaxAmount\": 123, \"netAmountIncludingTax\": 123, \"expectedReceiptDate\": \"string\"}",
          "required": true,
          "schema": {
            "title": "purchaseInvoiceLine1",
            "type": "object",
            "properties": {
              "id": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central purchaseInvoiceLine entity"
              },
              "documentId": {
                "type": "string",
                "description": "(v1.0) The documentId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "sequence": {
                "type": "integer",
                "description": "(v1.0) The sequence property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "itemId": {
                "type": "string",
                "description": "(v1.0) The itemId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "accountId": {
                "type": "string",
                "description": "(v1.0) The accountId property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "lineType": {
                "type": "string",
                "description": "(v1.0) The lineType property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "lineDetails": {
                "title": "documentlineobjectdetailstype",
                "type": "object",
                "properties": {
                  "number": {
                    "maxLength": 20,
                    "type": "string",
                    "description": "(v1.0) The number property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 100,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central documentlineobjectdetailstype entity",
                    "x-nullable": true
                  },
                  "item": {
                    "title": "item",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central item entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "type": {
                        "type": "string",
                        "description": "(v1.0) The type property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryId": {
                        "type": "string",
                        "description": "(v1.0) The itemCategoryId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "itemCategoryCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The itemCategoryCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasureId": {
                        "type": "string",
                        "description": "(v1.0) The baseUnitOfMeasureId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "baseUnitOfMeasure": {
                        "title": "unitofmeasuretype",
                        "type": "object",
                        "properties": {
                          "code": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "displayName": {
                            "maxLength": 50,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "symbol": {
                            "maxLength": 10,
                            "type": "string",
                            "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                            "x-nullable": true
                          },
                          "unitConversion": {
                            "title": "itemunitofmeasureconversiontype",
                            "type": "object",
                            "properties": {
                              "toUnitOfMeasure": {
                                "maxLength": 10,
                                "type": "string",
                                "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "fromToConversionRate": {
                                "type": "number",
                                "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                                "x-nullable": true
                              },
                              "picture": {
                                "type": "array",
                                "items": {
                                  "title": "picture",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                    },
                                    "width": {
                                      "type": "integer",
                                      "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "height": {
                                      "type": "integer",
                                      "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "contentType": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaEditLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    },
                                    "content@odata.mediaReadLink": {
                                      "type": "string",
                                      "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "defaultDimensions": {
                                "type": "array",
                                "items": {
                                  "title": "defaultDimensions",
                                  "type": "object",
                                  "properties": {
                                    "parentId": {
                                      "type": "string",
                                      "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                    },
                                    "dimensionCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueId": {
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValueCode": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "postingValidation": {
                                      "type": "string",
                                      "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                      "x-nullable": true
                                    },
                                    "account": {
                                      "title": "account",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                        },
                                        "number": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 100,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "category": {
                                          "type": "string",
                                          "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "subCategory": {
                                          "maxLength": 80,
                                          "type": "string",
                                          "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "blocked": {
                                          "type": "boolean",
                                          "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimension": {
                                      "title": "dimension",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 30,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                          "x-nullable": true
                                        },
                                        "dimensionValues": {
                                          "type": "array",
                                          "items": {
                                            "title": "dimensionValue",
                                            "type": "object",
                                            "properties": {
                                              "id": {
                                                "type": "string",
                                                "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                              },
                                              "code": {
                                                "maxLength": 20,
                                                "type": "string",
                                                "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "displayName": {
                                                "maxLength": 50,
                                                "type": "string",
                                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              },
                                              "lastModifiedDateTime": {
                                                "type": "string",
                                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                                "x-nullable": true
                                              }
                                            }
                                          },
                                          "description": "",
                                          "x-nullable": true
                                        }
                                      }
                                    },
                                    "dimensionValue": {
                                      "title": "dimensionValue",
                                      "type": "object",
                                      "properties": {
                                        "id": {
                                          "type": "string",
                                          "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                        },
                                        "code": {
                                          "maxLength": 20,
                                          "type": "string",
                                          "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "displayName": {
                                          "maxLength": 50,
                                          "type": "string",
                                          "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        },
                                        "lastModifiedDateTime": {
                                          "type": "string",
                                          "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                          "x-nullable": true
                                        }
                                      }
                                    }
                                  }
                                },
                                "description": "",
                                "x-nullable": true
                              },
                              "itemCategory": {
                                "title": "itemCategory",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                                  },
                                  "displayName": {
                                    "maxLength": 100,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                    "x-nullable": true
                                  }
                                }
                              }
                            }
                          },
                          "picture": {
                            "type": "array",
                            "items": {
                              "title": "picture",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                                },
                                "width": {
                                  "type": "integer",
                                  "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "height": {
                                  "type": "integer",
                                  "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "contentType": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaEditLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                },
                                "content@odata.mediaReadLink": {
                                  "type": "string",
                                  "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "defaultDimensions": {
                            "type": "array",
                            "items": {
                              "title": "defaultDimensions",
                              "type": "object",
                              "properties": {
                                "parentId": {
                                  "type": "string",
                                  "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                                },
                                "dimensionCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueId": {
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "dimensionValueCode": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "postingValidation": {
                                  "type": "string",
                                  "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                                  "x-nullable": true
                                },
                                "account": {
                                  "title": "account",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                    },
                                    "number": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 100,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "category": {
                                      "type": "string",
                                      "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "subCategory": {
                                      "maxLength": 80,
                                      "type": "string",
                                      "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "blocked": {
                                      "type": "boolean",
                                      "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimension": {
                                  "title": "dimension",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 30,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                      "x-nullable": true
                                    },
                                    "dimensionValues": {
                                      "type": "array",
                                      "items": {
                                        "title": "dimensionValue",
                                        "type": "object",
                                        "properties": {
                                          "id": {
                                            "type": "string",
                                            "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                          },
                                          "code": {
                                            "maxLength": 20,
                                            "type": "string",
                                            "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "displayName": {
                                            "maxLength": 50,
                                            "type": "string",
                                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          },
                                          "lastModifiedDateTime": {
                                            "type": "string",
                                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                            "x-nullable": true
                                          }
                                        }
                                      },
                                      "description": "",
                                      "x-nullable": true
                                    }
                                  }
                                },
                                "dimensionValue": {
                                  "title": "dimensionValue",
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                    },
                                    "code": {
                                      "maxLength": 20,
                                      "type": "string",
                                      "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "displayName": {
                                      "maxLength": 50,
                                      "type": "string",
                                      "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    },
                                    "lastModifiedDateTime": {
                                      "type": "string",
                                      "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                      "x-nullable": true
                                    }
                                  }
                                }
                              }
                            },
                            "description": "",
                            "x-nullable": true
                          },
                          "itemCategory": {
                            "title": "itemCategory",
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "code": {
                                "maxLength": 20,
                                "type": "string",
                                "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                              },
                              "displayName": {
                                "maxLength": 100,
                                "type": "string",
                                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              },
                              "lastModifiedDateTime": {
                                "type": "string",
                                "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                                "x-nullable": true
                              }
                            }
                          }
                        }
                      },
                      "gtin": {
                        "maxLength": 14,
                        "type": "string",
                        "description": "(v1.0) The gtin property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "inventory": {
                        "type": "number",
                        "description": "(v1.0) The inventory property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitPrice": {
                        "type": "number",
                        "description": "(v1.0) The unitPrice property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "priceIncludesTax": {
                        "type": "boolean",
                        "description": "(v1.0) The priceIncludesTax property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "unitCost": {
                        "type": "number",
                        "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupId": {
                        "type": "string",
                        "description": "(v1.0) The taxGroupId property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "taxGroupCode": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The taxGroupCode property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central item entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "account": {
                    "title": "account",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                      },
                      "number": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "category": {
                        "type": "string",
                        "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "subCategory": {
                        "maxLength": 80,
                        "type": "string",
                        "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "blocked": {
                        "type": "boolean",
                        "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "description": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The description property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "unitOfMeasure": {
                "title": "unitofmeasuretype",
                "type": "object",
                "properties": {
                  "code": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The code property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "displayName": {
                    "maxLength": 50,
                    "type": "string",
                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "symbol": {
                    "maxLength": 10,
                    "type": "string",
                    "description": "(v1.0) The symbol property for the Dynamics 365 Business Central unitofmeasuretype entity",
                    "x-nullable": true
                  },
                  "unitConversion": {
                    "title": "itemunitofmeasureconversiontype",
                    "type": "object",
                    "properties": {
                      "toUnitOfMeasure": {
                        "maxLength": 10,
                        "type": "string",
                        "description": "(v1.0) The toUnitOfMeasure property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "fromToConversionRate": {
                        "type": "number",
                        "description": "(v1.0) The fromToConversionRate property for the Dynamics 365 Business Central itemunitofmeasureconversiontype entity",
                        "x-nullable": true
                      },
                      "picture": {
                        "type": "array",
                        "items": {
                          "title": "picture",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                            },
                            "width": {
                              "type": "integer",
                              "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "height": {
                              "type": "integer",
                              "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "contentType": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaEditLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            },
                            "content@odata.mediaReadLink": {
                              "type": "string",
                              "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "defaultDimensions": {
                        "type": "array",
                        "items": {
                          "title": "defaultDimensions",
                          "type": "object",
                          "properties": {
                            "parentId": {
                              "type": "string",
                              "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                            },
                            "dimensionCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueId": {
                              "type": "string",
                              "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "dimensionValueCode": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "postingValidation": {
                              "type": "string",
                              "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                              "x-nullable": true
                            },
                            "account": {
                              "title": "account",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                                },
                                "number": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 100,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "category": {
                                  "type": "string",
                                  "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "subCategory": {
                                  "maxLength": 80,
                                  "type": "string",
                                  "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "blocked": {
                                  "type": "boolean",
                                  "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimension": {
                              "title": "dimension",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 30,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                                  "x-nullable": true
                                },
                                "dimensionValues": {
                                  "type": "array",
                                  "items": {
                                    "title": "dimensionValue",
                                    "type": "object",
                                    "properties": {
                                      "id": {
                                        "type": "string",
                                        "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                      },
                                      "code": {
                                        "maxLength": 20,
                                        "type": "string",
                                        "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "displayName": {
                                        "maxLength": 50,
                                        "type": "string",
                                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      },
                                      "lastModifiedDateTime": {
                                        "type": "string",
                                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                        "x-nullable": true
                                      }
                                    }
                                  },
                                  "description": "",
                                  "x-nullable": true
                                }
                              }
                            },
                            "dimensionValue": {
                              "title": "dimensionValue",
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                },
                                "code": {
                                  "maxLength": 20,
                                  "type": "string",
                                  "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "displayName": {
                                  "maxLength": 50,
                                  "type": "string",
                                  "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                },
                                "lastModifiedDateTime": {
                                  "type": "string",
                                  "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                  "x-nullable": true
                                }
                              }
                            }
                          }
                        },
                        "description": "",
                        "x-nullable": true
                      },
                      "itemCategory": {
                        "title": "itemCategory",
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "code": {
                            "maxLength": 20,
                            "type": "string",
                            "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                          },
                          "displayName": {
                            "maxLength": 100,
                            "type": "string",
                            "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          },
                          "lastModifiedDateTime": {
                            "type": "string",
                            "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                            "x-nullable": true
                          }
                        }
                      }
                    }
                  },
                  "picture": {
                    "type": "array",
                    "items": {
                      "title": "picture",
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "(v1.0) The id property for the Dynamics 365 Business Central picture entity"
                        },
                        "width": {
                          "type": "integer",
                          "description": "(v1.0) The width property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "height": {
                          "type": "integer",
                          "description": "(v1.0) The height property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "contentType": {
                          "maxLength": 100,
                          "type": "string",
                          "description": "(v1.0) The contentType property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaEditLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaEditLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        },
                        "content@odata.mediaReadLink": {
                          "type": "string",
                          "description": "(v1.0) The content@odata.mediaReadLink property for the Dynamics 365 Business Central picture entity",
                          "x-nullable": true
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "defaultDimensions": {
                    "type": "array",
                    "items": {
                      "title": "defaultDimensions",
                      "type": "object",
                      "properties": {
                        "parentId": {
                          "type": "string",
                          "description": "(v1.0) The parentId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionId property for the Dynamics 365 Business Central defaultDimensions entity"
                        },
                        "dimensionCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueId": {
                          "type": "string",
                          "description": "(v1.0) The dimensionValueId property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "dimensionValueCode": {
                          "maxLength": 20,
                          "type": "string",
                          "description": "(v1.0) The dimensionValueCode property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "postingValidation": {
                          "type": "string",
                          "description": "(v1.0) The postingValidation property for the Dynamics 365 Business Central defaultDimensions entity",
                          "x-nullable": true
                        },
                        "account": {
                          "title": "account",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central account entity"
                            },
                            "number": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The number property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 100,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "category": {
                              "type": "string",
                              "description": "(v1.0) The category property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "subCategory": {
                              "maxLength": 80,
                              "type": "string",
                              "description": "(v1.0) The subCategory property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "blocked": {
                              "type": "boolean",
                              "description": "(v1.0) The blocked property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central account entity",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimension": {
                          "title": "dimension",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimension entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 30,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimension entity",
                              "x-nullable": true
                            },
                            "dimensionValues": {
                              "type": "array",
                              "items": {
                                "title": "dimensionValue",
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                                  },
                                  "code": {
                                    "maxLength": 20,
                                    "type": "string",
                                    "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "displayName": {
                                    "maxLength": 50,
                                    "type": "string",
                                    "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  },
                                  "lastModifiedDateTime": {
                                    "type": "string",
                                    "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                                    "x-nullable": true
                                  }
                                }
                              },
                              "description": "",
                              "x-nullable": true
                            }
                          }
                        },
                        "dimensionValue": {
                          "title": "dimensionValue",
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "(v1.0) The id property for the Dynamics 365 Business Central dimensionValue entity"
                            },
                            "code": {
                              "maxLength": 20,
                              "type": "string",
                              "description": "(v1.0) The code property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "displayName": {
                              "maxLength": 50,
                              "type": "string",
                              "description": "(v1.0) The displayName property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            },
                            "lastModifiedDateTime": {
                              "type": "string",
                              "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central dimensionValue entity",
                              "x-nullable": true
                            }
                          }
                        }
                      }
                    },
                    "description": "",
                    "x-nullable": true
                  },
                  "itemCategory": {
                    "title": "itemCategory",
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "(v1.0) The id property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "code": {
                        "maxLength": 20,
                        "type": "string",
                        "description": "(v1.0) The code property for the Dynamics 365 Business Central itemCategory entity"
                      },
                      "displayName": {
                        "maxLength": 100,
                        "type": "string",
                        "description": "(v1.0) The displayName property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      },
                      "lastModifiedDateTime": {
                        "type": "string",
                        "description": "(v1.0) The lastModifiedDateTime property for the Dynamics 365 Business Central itemCategory entity",
                        "x-nullable": true
                      }
                    }
                  }
                }
              },
              "unitCost": {
                "type": "number",
                "description": "(v1.0) The unitCost property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "quantity": {
                "type": "number",
                "description": "(v1.0) The quantity property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountAmount": {
                "type": "number",
                "description": "(v1.0) The discountAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountPercent": {
                "type": "number",
                "description": "(v1.0) The discountPercent property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "discountAppliedBeforeTax": {
                "type": "boolean",
                "description": "(v1.0) The discountAppliedBeforeTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "amountExcludingTax": {
                "type": "number",
                "description": "(v1.0) The amountExcludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "taxCode": {
                "maxLength": 50,
                "type": "string",
                "description": "(v1.0) The taxCode property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "taxPercent": {
                "type": "number",
                "description": "(v1.0) The taxPercent property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "totalTaxAmount": {
                "type": "number",
                "description": "(v1.0) The totalTaxAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "amountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The amountIncludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "invoiceDiscountAllocation": {
                "type": "number",
                "description": "(v1.0) The invoiceDiscountAllocation property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netAmount": {
                "type": "number",
                "description": "(v1.0) The netAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netTaxAmount": {
                "type": "number",
                "description": "(v1.0) The netTaxAmount property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "netAmountIncludingTax": {
                "type": "number",
                "description": "(v1.0) The netAmountIncludingTax property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              },
              "expectedReceiptDate": {
                "type": "string",
                "description": "(v1.0) The expectedReceiptDate property for the Dynamics 365 Business Central purchaseInvoiceLine entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchPurchaseInvoiceLine"
      },
      "task": true
    },
    {
      "name": "listProjects",
      "summary": "listProjects",
      "description": "Returns a list of projects",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listProjects"
      },
      "task": true
    },
    {
      "name": "postProject",
      "summary": "postProject",
      "description": "Creates an object of type project in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\"}",
          "required": true,
          "schema": {
            "title": "project",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central project entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central project entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central project entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postProject"
      },
      "task": true
    },
    {
      "name": "getProject",
      "summary": "getProject",
      "description": "Retrieve the properties and relationships of an object of type project for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "projectId",
          "type": "string",
          "info": "(v1.0) id for project: string",
          "required": true,
          "schema": {
            "title": "projectId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getProject"
      },
      "task": true
    },
    {
      "name": "deleteProject",
      "summary": "deleteProject",
      "description": "Deletes an object of type project in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "projectId",
          "type": "string",
          "info": "(v1.0) id for project: string",
          "required": true,
          "schema": {
            "title": "projectId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteProject"
      },
      "task": true
    },
    {
      "name": "patchProject",
      "summary": "patchProject",
      "description": "Updates an object of type project in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "projectId",
          "type": "string",
          "info": "(v1.0) id for project: string",
          "required": true,
          "schema": {
            "title": "projectId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\"}",
          "required": true,
          "schema": {
            "title": "project",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central project entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central project entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central project entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchProject"
      },
      "task": true
    },
    {
      "name": "listBankAccounts",
      "summary": "listBankAccounts",
      "description": "Returns a list of bankAccounts",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listBankAccounts"
      },
      "task": true
    },
    {
      "name": "postBankAccount",
      "summary": "postBankAccount",
      "description": "Creates an object of type bankAccount in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\"}",
          "required": true,
          "schema": {
            "title": "bankAccount",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central bankAccount entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central bankAccount entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central bankAccount entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postBankAccount"
      },
      "task": true
    },
    {
      "name": "getBankAccount",
      "summary": "getBankAccount",
      "description": "Retrieve the properties and relationships of an object of type bankAccount for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "bankAccountId",
          "type": "string",
          "info": "(v1.0) id for bankAccount: string",
          "required": true,
          "schema": {
            "title": "bankAccountId",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getBankAccount"
      },
      "task": true
    },
    {
      "name": "deleteBankAccount",
      "summary": "deleteBankAccount",
      "description": "Deletes an object of type bankAccount in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "bankAccountId",
          "type": "string",
          "info": "(v1.0) id for bankAccount: string",
          "required": true,
          "schema": {
            "title": "bankAccountId",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteBankAccount"
      },
      "task": true
    },
    {
      "name": "patchBankAccount",
      "summary": "patchBankAccount",
      "description": "Updates an object of type bankAccount in Dynamics 365 Business Central",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "bankAccountId",
          "type": "string",
          "info": "(v1.0) id for bankAccount: string",
          "required": true,
          "schema": {
            "title": "bankAccountId",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": ": {\"id\": \"string\", \"number\": \"string\", \"displayName\": \"string\"}",
          "required": true,
          "schema": {
            "title": "bankAccount",
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "(v1.0) The id property for the Dynamics 365 Business Central bankAccount entity"
              },
              "number": {
                "maxLength": 20,
                "type": "string",
                "description": "(v1.0) The number property for the Dynamics 365 Business Central bankAccount entity",
                "x-nullable": true
              },
              "displayName": {
                "maxLength": 100,
                "type": "string",
                "description": "(v1.0) The displayName property for the Dynamics 365 Business Central bankAccount entity",
                "x-nullable": true
              }
            },
            "definitions": {}
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/patchBankAccount"
      },
      "task": true
    },
    {
      "name": "listCustomerSales",
      "summary": "listCustomerSales",
      "description": "Returns a list of customerSales",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listCustomerSales"
      },
      "task": true
    },
    {
      "name": "getCustomerSale",
      "summary": "getCustomerSale",
      "description": "Retrieve the properties and relationships of an object of type customerSale for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "customerSaleCustomerId",
          "type": "string",
          "info": "(v1.0) customerId for customerSale: string",
          "required": true,
          "schema": {
            "title": "customerSaleCustomerId",
            "type": "string"
          }
        },
        {
          "name": "customerSaleCustomerNumber",
          "type": "string",
          "info": "(v1.0) customerNumber for customerSale: string",
          "required": true,
          "schema": {
            "title": "customerSaleCustomerNumber",
            "type": "string"
          }
        },
        {
          "name": "customerSaleName",
          "type": "string",
          "info": "(v1.0) name for customerSale: string",
          "required": true,
          "schema": {
            "title": "customerSaleName",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getCustomerSale"
      },
      "task": true
    },
    {
      "name": "listVendorPurchases",
      "summary": "listVendorPurchases",
      "description": "Returns a list of vendorPurchases",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "top",
          "type": "number",
          "info": "(v1.0) Number of items to return from the top of the list: 123",
          "required": false,
          "schema": {
            "title": "top",
            "type": "number"
          }
        },
        {
          "name": "skip",
          "type": "number",
          "info": "(v1.0) Number of items to skip from the list: 123",
          "required": false,
          "schema": {
            "title": "skip",
            "type": "number"
          }
        },
        {
          "name": "limit",
          "type": "number",
          "info": "(v1.0) Number of items to return from the list: 123",
          "required": false,
          "schema": {
            "title": "limit",
            "type": "number"
          }
        },
        {
          "name": "filter",
          "type": "string",
          "info": "(v1.0) Filtering expression: string",
          "required": false,
          "schema": {
            "title": "filter",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/listVendorPurchases"
      },
      "task": true
    },
    {
      "name": "getVendorPurchase",
      "summary": "getVendorPurchase",
      "description": "Retrieve the properties and relationships of an object of type vendorPurchase for Dynamics 365 Business Central.",
      "input": [
        {
          "name": "companyId",
          "type": "string",
          "info": "(v1.0) id for company: string",
          "required": true,
          "schema": {
            "title": "companyId",
            "type": "string"
          }
        },
        {
          "name": "vendorPurchaseVendorId",
          "type": "string",
          "info": "(v1.0) vendorId for vendorPurchase: string",
          "required": true,
          "schema": {
            "title": "vendorPurchaseVendorId",
            "type": "string"
          }
        },
        {
          "name": "vendorPurchaseVendorNumber",
          "type": "string",
          "info": "(v1.0) vendorNumber for vendorPurchase: string",
          "required": true,
          "schema": {
            "title": "vendorPurchaseVendorNumber",
            "type": "string"
          }
        },
        {
          "name": "vendorPurchaseName",
          "type": "string",
          "info": "(v1.0) name for vendorPurchase: string",
          "required": true,
          "schema": {
            "title": "vendorPurchaseName",
            "type": "string"
          }
        },
        {
          "name": "select",
          "type": "array",
          "info": "(v1.0) Selected properties to be retrieved: array",
          "required": false,
          "schema": {
            "title": "select",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getVendorPurchase"
      },
      "task": true
    }
  ],
  "views": []
}