app.offprint.block.taskList

offprint.app

Documentation

main object

No description available.

Properties

children array of ref#taskItem Required

Task items

View raw schema
{
  "type": "object",
  "required": [
    "children"
  ],
  "properties": {
    "children": {
      "type": "array",
      "items": {
        "ref": "#taskItem",
        "type": "ref"
      },
      "required": true,
      "description": "Task items"
    }
  }
}
taskItem object

No description available.

Properties

checked boolean Required

Whether the task is completed

children array of ref#taskItem Optional

Nested task items

View raw schema
{
  "type": "object",
  "required": [
    "content",
    "checked"
  ],
  "properties": {
    "checked": {
      "type": "boolean",
      "required": true,
      "description": "Whether the task is completed"
    },
    "content": {
      "ref": "app.offprint.block.text",
      "type": "ref",
      "required": true,
      "description": "Text content of the task item"
    },
    "children": {
      "type": "array",
      "items": {
        "ref": "#taskItem",
        "type": "ref"
      },
      "description": "Nested task items"
    }
  }
}

Lexicon Garden

@