gg.lou.record

lou.gg

Documentation

An example schema to show off how lexshift allows for easy migrations.

main record

An example schema to show off how lexshift allows for easy migrations.

Record Key tid Timestamp-based ID

Properties

done boolean Required

Whether this record has been completed

Default: false
title string Required

title name of record; can not be empty

maxLength: 640 bytesminLength: 1 bytesmaxGraphemes: 64 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "done"
    ],
    "properties": {
      "done": {
        "type": "boolean",
        "default": false,
        "description": "Whether this record has been completed"
      },
      "title": {
        "type": "string",
        "maxLength": 640,
        "minLength": 1,
        "description": "title name of record; can not be empty",
        "maxGraphemes": 64
      }
    }
  },
  "description": "An example schema to show off how lexshift allows for easy migrations."
}

Lexicon Garden

@