model_field_reposition
Reposition fields in Anki note templates by specifying model name, field name, and new index for improved organization and workflow.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldName | Yes | Name of the field to reposition | |
index | Yes | New position for the field (0-based) | |
modelName | Yes | Name of the model |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fieldName": {
"description": "Name of the field to reposition",
"type": "string"
},
"index": {
"description": "New position for the field (0-based)",
"type": "number"
},
"modelName": {
"description": "Name of the model",
"type": "string"
}
},
"required": [
"modelName",
"fieldName",
"index"
],
"type": "object"
}