app.offprint.block.orderedList

offprint.app

Documentation

main object

No description available.

Properties

children array of ref#listItem Required

List items

start integer Optional

Starting number for the list

View raw schema
{
  "type": "object",
  "required": [
    "children"
  ],
  "properties": {
    "start": {
      "type": "integer",
      "default": 1,
      "description": "Starting number for the list"
    },
    "children": {
      "type": "array",
      "items": {
        "ref": "#listItem",
        "type": "ref"
      },
      "required": true,
      "description": "List items"
    }
  }
}
listItem object

No description available.

Properties

children array of ref#listItem Optional

Nested list items

View raw schema
{
  "type": "object",
  "required": [
    "content"
  ],
  "properties": {
    "content": {
      "ref": "app.offprint.block.text",
      "type": "ref",
      "required": true,
      "description": "Text content of the list item"
    },
    "children": {
      "type": "array",
      "items": {
        "ref": "#listItem",
        "type": "ref"
      },
      "description": "Nested list items"
    }
  }
}

Lexicon Garden

@