update_model_templates
Modify or create templates for Anki card models by specifying Front and Back content. Customize study material layouts efficiently for enhanced learning experiences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelName | Yes | Name of the model | |
templates | Yes | Object mapping template names to their Front/Back content |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"modelName": {
"description": "Name of the model",
"type": "string"
},
"templates": {
"additionalProperties": {
"additionalProperties": false,
"properties": {
"Back": {
"description": "Back template content",
"type": "string"
},
"Front": {
"description": "Front template content",
"type": "string"
}
},
"type": "object"
},
"description": "Object mapping template names to their Front/Back content",
"type": "object"
}
},
"required": [
"modelName",
"templates"
],
"type": "object"
}