{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EvaluationConfigSetActiveKeyRequest",
"title": "EvaluationConfigSetActiveKeyRequest",
"type": "object",
"properties": {
"key_id": {
"type": "string",
"format": "uuid",
"description": "UUID of an existing LLM provider key (state must be 'ok') to mark as the active key for running llm_judge evaluations team-wide."
}
},
"required": [
"key_id"
]
}