Salesforce · Schema

Prediction

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
model object
prediction object
prescriptions array
status string
View JSON Schema on GitHub

JSON Schema

salesforce-prediction-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "model": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "example": "abc123"
        }
      },
      "required": [
        "id"
      ]
    },
    "prediction": {
      "type": "object",
      "properties": {
        "middleValues": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "string"
          }
        },
        "total": {
          "type": "number",
          "example": 42
        }
      },
      "required": [
        "middleValues",
        "total"
      ]
    },
    "prescriptions": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "model",
    "prediction",
    "prescriptions",
    "status"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Prediction"
}