clone_deck_config
Duplicate an Anki deck configuration by specifying its ID and assigning a new name, enabling quick replication of settings for streamlined deck management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newConfigName | Yes | Name for the new cloned configuration | |
sourceConfigId | Yes | ID of the deck configuration to clone from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"newConfigName": {
"description": "Name for the new cloned configuration",
"type": "string"
},
"sourceConfigId": {
"description": "ID of the deck configuration to clone from",
"type": "number"
}
},
"required": [
"sourceConfigId",
"newConfigName"
],
"type": "object"
}