TodoItem
One todo entry.
Fields and variants
Section titled “Fields and variants”activeFormstatustext
Source
schema/msp/experimental/msp.schema.json#/types/TodoItem
{ "description": "One todo entry.", "properties": { "activeForm": { "description": "Present-tense active form, when the tool supplied one.", "type": "string" }, "status": { "$ref": "#/$defs/TodoStatus", "description": "The todo status (camelCased runtime `TodoStatus`)." }, "text": { "description": "The todo text.", "type": "string" } }, "required": [ "status", "text" ], "type": "object"}