Vapi · Schema

TestSuiteRunTestResult

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
test object This is the test that was run.
attempts array These are the attempts made for this test.
View JSON Schema on GitHub

JSON Schema

vapi-testsuiteruntestresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TestSuiteRunTestResult",
  "title": "TestSuiteRunTestResult",
  "type": "object",
  "properties": {
    "test": {
      "description": "This is the test that was run.",
      "oneOf": [
        {
          "$ref": "#/components/schemas/TestSuiteTestVoice",
          "title": "TestSuiteTestVoice"
        }
      ]
    },
    "attempts": {
      "description": "These are the attempts made for this test.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TestSuiteRunTestAttempt"
      }
    }
  },
  "required": [
    "test",
    "attempts"
  ]
}