OpportunityCreate

Properties for creating a new opportunity.

Business ApplicationsCloudCRMEnterpriseERPMicrosoft
View JSON Schema on GitHub

JSON Schema

microsoft-dynamics-365-opportunitycreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OpportunityCreate",
  "title": "OpportunityCreate",
  "type": "object",
  "description": "Properties for creating a new opportunity.",
  "required": [
    "name"
  ],
  "allOf": [
    {
      "$ref": "#/components/schemas/OpportunityUpdate"
    },
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 300,
          "description": "Subject or descriptive name (topic) for the opportunity."
        }
      }
    }
  ]
}