card_suspended
Determine if a specific Anki flashcard is suspended by checking its unique card ID. Returns a boolean value indicating the suspension status.
Instructions
Checks if a single card is suspended by its ID. Returns true if suspended, false otherwise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card | Yes | The ID of the card. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"card": {
"description": "The ID of the card.",
"title": "Card",
"type": "integer"
}
},
"required": [
"card"
],
"type": "object"
}