set_deck_config
Apply a specific configuration ID to multiple Anki decks by specifying their names. Simplifies deck management and ensures consistent settings across selected decks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configId | Yes | ID of the configuration to apply | |
deckNames | Yes | Array of deck names to apply the configuration to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"configId": {
"description": "ID of the configuration to apply",
"type": "number"
},
"deckNames": {
"description": "Array of deck names to apply the configuration to",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"configId",
"deckNames"
],
"type": "object"
}