Salesforce · Schema

PredictRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
predictionDefinition string
type string
columnNames array
rows array
View JSON Schema on GitHub

JSON Schema

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