AccountCreate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
OrganizationName string
Type string
Industry string
AnnualRevenue number
PhoneNumber string
EmailAddress string
URL string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-accountcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountCreate",
  "title": "AccountCreate",
  "type": "object",
  "required": [
    "OrganizationName"
  ],
  "properties": {
    "OrganizationName": {
      "type": "string"
    },
    "Type": {
      "type": "string",
      "enum": [
        "Customer",
        "Prospect",
        "Partner"
      ]
    },
    "Industry": {
      "type": "string"
    },
    "AnnualRevenue": {
      "type": "number",
      "format": "double"
    },
    "PhoneNumber": {
      "type": "string"
    },
    "EmailAddress": {
      "type": "string",
      "format": "email"
    },
    "URL": {
      "type": "string",
      "format": "uri"
    }
  }
}