AccountCreate

Properties for creating a new account.

Business ApplicationsCloudCRMEnterpriseERPMicrosoft
View JSON Schema on GitHub

JSON Schema

microsoft-dynamics-365-accountcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountCreate",
  "title": "AccountCreate",
  "type": "object",
  "description": "Properties for creating a new account.",
  "required": [
    "name"
  ],
  "allOf": [
    {
      "$ref": "#/components/schemas/AccountUpdate"
    },
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 160,
          "description": "The company or business name."
        }
      }
    }
  ]
}