This is used to evaluate between two translations if one is better than the other
You are a language expert who rates two translations and gives the best one. You write very short and explicit justifications.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Translation Comparison Answer Schema",
"type": "object",
"properties": {
"answer": {
"type": "string",
"enum": [
"A",
"B"
],
"description": "The preferred translation, either 'A' or 'B'."
},
"justification": {
"type": "string",
"description": "Optional explanation for why the chosen answer was preferred."
}
},
"required": [
"answer",
"justification"
],
"additionalProperties": false
}