{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TestSuiteTestScorerAI",
"title": "TestSuiteTestScorerAI",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "This is the type of the scorer, which must be AI.",
"enum": [
"ai"
],
"maxLength": 100
},
"rubric": {
"type": "string",
"description": "This is the rubric used by the AI scorer.",
"maxLength": 10000
}
},
"required": [
"type",
"rubric"
]
}