answer_cards
Process and record user responses to flashcards by submitting card IDs and ease ratings (1-4) for effective spaced repetition learning.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
answers | Yes | Array of card answers |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"answers": {
"description": "Array of card answers",
"items": {
"additionalProperties": false,
"properties": {
"cardId": {
"description": "ID of the card to answer",
"type": "number"
},
"ease": {
"description": "Ease rating: 1 (Again), 2 (Hard), 3 (Good), 4 (Easy)",
"maximum": 4,
"minimum": 1,
"type": "number"
}
},
"required": [
"cardId",
"ease"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"answers"
],
"type": "object"
}