Properties
| Name | Type | Description |
|---|---|---|
| scorerResults | array | These are the results of the scorers used to evaluate the test attempt. |
| call | object | This is the call made during the test attempt. |
| callId | string | This is the call ID for the test attempt. |
| metadata | object | This is the metadata for the test attempt. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TestSuiteRunTestAttempt",
"title": "TestSuiteRunTestAttempt",
"type": "object",
"properties": {
"scorerResults": {
"type": "array",
"description": "These are the results of the scorers used to evaluate the test attempt.",
"items": {
"oneOf": [
{
"$ref": "#/components/schemas/TestSuiteRunScorerAI",
"title": "AI"
}
]
}
},
"call": {
"description": "This is the call made during the test attempt.",
"allOf": [
{
"$ref": "#/components/schemas/TestSuiteRunTestAttemptCall"
}
]
},
"callId": {
"type": "string",
"description": "This is the call ID for the test attempt."
},
"metadata": {
"description": "This is the metadata for the test attempt.",
"allOf": [
{
"$ref": "#/components/schemas/TestSuiteRunTestAttemptMetadata"
}
]
}
},
"required": [
"scorerResults"
]
}