Skip to content
Developer Preview

TodoItem

One todo entry.

  • activeForm
  • status
  • text
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"
}