Forethought · JSON Structure

Forethought Triage Prediction Structure

Structural breakdown of a Triage prediction response.

Type: object Properties: 0
AIArtificial IntelligenceCustomer SupportCustomer ServiceGenerative AISupportGPTConversational AITicket TriageAgentic AIVoice AIHelpdeskMulti-Agent

TriagePrediction is a JSON Structure definition published by Forethought. It conforms to the https://json-structure.org/draft/2025-01 meta-schema.

Meta-schema: https://json-structure.org/draft/2025-01

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2025-01",
  "$id": "https://raw.githubusercontent.com/api-evangelist/forethought/main/json-structure/forethought-triage-prediction-structure.json",
  "title": "Forethought Triage Prediction Structure",
  "description": "Structural breakdown of a Triage prediction response.",
  "type": "object",
  "name": "TriagePrediction",
  "fields": [
    { "name": "model_name", "type": "string", "required": true },
    { "name": "prediction_confidence", "type": "number", "min": 0, "max": 1 },
    {
      "name": "top_predictions",
      "type": "array",
      "items": {
        "type": "object",
        "fields": [
          { "name": "prediction_value", "type": "string", "required": true },
          { "name": "prediction_confidence", "type": "number", "min": 0, "max": 1 }
        ]
      }
    }
  ]
}