Skip to content
Developer Preview

TodoListState

The latest todo-list fact in the snapshot.

  • items
  • revision
  • sourceTool
Source

schema/msp/experimental/msp.schema.json#/types/TodoListState

{
"description": "The latest todo-list fact in the snapshot.",
"properties": {
"items": {
"description": "The full todo list.",
"items": {
"$ref": "#/$defs/TodoItem"
},
"type": "array"
},
"revision": {
"description": "The snapshot revision. Diagnostics only, never an ordering guard.",
"type": "integer"
},
"sourceTool": {
"description": "The tool that produced the snapshot, verbatim.",
"type": "string"
}
},
"required": [
"items",
"revision",
"sourceTool"
],
"type": "object"
}