Salesforce · Schema

ExpressionSetUpdateRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
apiName string
contextDefinitions array
name string
usageType string
versions array
View JSON Schema on GitHub

JSON Schema

salesforce-expression-set-update-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "apiName": {
      "type": "string",
      "example": "example_value"
    },
    "contextDefinitions": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "usageType": {
      "type": "string",
      "example": "example_value"
    },
    "versions": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "apiName": {
            "type": "string",
            "example": "example_value"
          },
          "enabled": {
            "type": "boolean",
            "example": true
          },
          "id": {
            "type": "string",
            "example": "abc123"
          },
          "name": {
            "type": "string",
            "example": "Example Title"
          },
          "showExplExternally": {
            "type": "boolean",
            "example": true
          },
          "startDate": {
            "type": "string",
            "example": "example_value"
          },
          "steps": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "string"
            }
          },
          "variables": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "string"
            }
          },
          "versionNumber": {
            "type": "integer",
            "example": 10
          }
        },
        "required": [
          "apiName",
          "enabled",
          "id",
          "name",
          "showExplExternally",
          "startDate",
          "steps",
          "variables",
          "versionNumber"
        ]
      }
    }
  },
  "required": [
    "apiName",
    "contextDefinitions",
    "name",
    "usageType",
    "versions"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ExpressionSetUpdateRequest"
}