suspend_cards
Temporarily halt the display of specific flashcards in Anki by suspending their card IDs to customize your study sessions and optimize learning focus.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardIds | Yes | Array of card IDs to suspend |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardIds": {
"description": "Array of card IDs to suspend",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"cardIds"
],
"type": "object"
}