Salesforce · Schema

Input1

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
input array
View JSON Schema on GitHub

JSON Schema

salesforce-input1-schema.json Raw ↑
{
  "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"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Input1"
}