curl -X POST https://api.judge.example.com/feedback \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"evaluation_id": "eval_def456",
"overall_rating": 4,
"accuracy_rating": 5,
"helpfulness_rating": 3,
"comments": "Good analysis but suggestions could be more specific",
"criteria_feedback": [
{
"criterion_id": "crit_001",
"rating": 5,
"comment": "Clarity rating was spot on"
}
]
}'