Salesforce · Schema

Data11

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
uiapi object
View JSON Schema on GitHub

JSON Schema

salesforce-data11-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "uiapi": {
      "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"
      ]
    }
  },
  "required": [
    "uiapi"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Data11"
}