Salesforce · Schema

LookupTableRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
inputs array
options object
View JSON Schema on GitHub

JSON Schema

salesforce-lookup-table-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "input": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "example": "Example Title"
                },
                "value": {
                  "type": "string",
                  "example": "example_value"
                }
              },
              "required": [
                "name",
                "value"
              ]
            }
          }
        },
        "required": [
          "input"
        ]
      }
    },
    "options": {
      "type": "object",
      "example": "example_value"
    }
  },
  "required": [
    "inputs",
    "options"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LookupTableRequest"
}