model_modelTemplates
Retrieve template content for each card associated with a specific Anki model, enabling structured management and customization of flashcard layouts.
Instructions
Returns an object indicating the template content for each card of the specified model.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelName | Yes | The name of the model. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"modelName": {
"description": "The name of the model.",
"title": "Modelname",
"type": "string"
}
},
"required": [
"modelName"
],
"type": "object"
}