Salesforce · Schema

Uiapi11

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
AccountCreate object
View JSON Schema on GitHub

JSON Schema

salesforce-uiapi11-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "AccountCreate": {
      "type": "object",
      "properties": {
        "Record": {
          "type": "object",
          "properties": {
            "Id": {
              "type": "string",
              "example": "abc123"
            },
            "Name": {
              "type": "object",
              "properties": {
                "value": {
                  "type": "string",
                  "example": "example_value"
                }
              },
              "required": [
                "value"
              ]
            }
          },
          "required": [
            "Id",
            "Name"
          ]
        }
      },
      "required": [
        "Record"
      ]
    }
  },
  "required": [
    "AccountCreate"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Uiapi11"
}