Vapi · Schema

SimulationRunItemImprovementSuggestion

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
issue string This is the issue identified.
suggestion string This is the suggested improvement.
View JSON Schema on GitHub

JSON Schema

vapi-simulationrunitemimprovementsuggestion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimulationRunItemImprovementSuggestion",
  "title": "SimulationRunItemImprovementSuggestion",
  "type": "object",
  "properties": {
    "issue": {
      "type": "string",
      "description": "This is the issue identified."
    },
    "suggestion": {
      "type": "string",
      "description": "This is the suggested improvement."
    }
  },
  "required": [
    "issue",
    "suggestion"
  ]
}