Salesforce · JSON Structure

Salesforce Create Table Request Structure

Type: object Properties: 8 Required: 8
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

CreateTableRequest is a JSON Structure definition published by Salesforce, describing 8 properties, of which 8 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

setupName fullName description sourceObject status conditionType conditionCriteria parameters

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "CreateTableRequest",
  "properties": {
    "setupName": {
      "type": "string"
    },
    "fullName": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "sourceObject": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "conditionType": {
      "type": "string"
    },
    "conditionCriteria": {
      "type": "string"
    },
    "parameters": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "fieldName": {
            "type": "string"
          },
          "usage": {
            "type": "string"
          },
          "operator": {
            "type": "string"
          },
          "sequence": {
            "type": "string"
          }
        },
        "required": [
          "fieldName",
          "usage"
        ]
      }
    }
  },
  "required": [
    "setupName",
    "fullName",
    "description",
    "sourceObject",
    "status",
    "conditionType",
    "conditionCriteria",
    "parameters"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}