set_cards_ease_factors
Adjust ease factors for specified Anki cards by providing card IDs and corresponding ease factors to optimize learning intervals.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardIds | Yes | Array of card IDs to set ease factors for | |
easeFactors | Yes | Array of ease factors (must match the length of cardIds) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardIds": {
"description": "Array of card IDs to set ease factors for",
"items": {
"type": "number"
},
"type": "array"
},
"easeFactors": {
"description": "Array of ease factors (must match the length of cardIds)",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"cardIds",
"easeFactors"
],
"type": "object"
}