com.welistskyblue.list.item

welistskyblue.com

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

deletedAt string datetime Optional

An RFC 3339 formatted timestamp.

name string Required

Task name/title.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
status string Required

Task status.

Allowed: ongoing, done
Default: ongoing
updatedAt string datetime Optional

An RFC 3339 formatted timestamp.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "status",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 640,
        "description": "Task name/title.",
        "maxGraphemes": 64
      },
      "status": {
        "enum": [
          "ongoing",
          "done"
        ],
        "type": "string",
        "default": "ongoing",
        "description": "Task status."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "deletedAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  }
}

Lexicon Garden

@