Feedback Aide API Evaluation Options
marking_style
Configures the grading style to suit the context of the evaluation or assessment.
You would want to use this to adjust the strictness of grading based on the context, for example, using a more generous style for formative assessments and a harsher style for summative assessments.
Examples
// Example for evaluate endpoints
{
"options": {
"grading": {
"marking_style": "generous"
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
grading: {
marking_style: "generous"
}
},
}
);
Values
Default "balanced"
Type string
Possible values
"generous"Generous marking style which is more lenient and good for more supportive learning environments.
"balanced"Balanced marking style.
"harsh"Harsher marking style for higher stakes assessments or scenarios where appropriate.