Salesforce · JSON Structure

Salesforce Prediction Structure

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

Prediction 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

model prediction prescriptions status

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

JSON Structure

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