Salesforce · JSON Structure

Salesforce Predict Request Structure

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

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

Properties

predictionDefinition type columnNames rows

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "PredictRequest",
  "properties": {
    "predictionDefinition": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "columnNames": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    },
    "rows": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    }
  },
  "required": [
    "predictionDefinition",
    "type",
    "columnNames",
    "rows"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}