dev.kanad.lexicon-test-2026-02-26.exampleCatLexicon

lexicon.store View official

Documentation

some example cat lexicon

main record

some example cat lexicon

Record Key any Any valid record key

Properties

avatar blob Optional

picture of the cat

maxSize: 2.0 MB
createdAt string datetime Required

An RFC 3339 formatted timestamp.

name string Required

cat name

maxLength: 640 bytesminLength: 1 bytesmaxGraphemes: 64 graphemes
View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 640,
        "minLength": 1,
        "description": "cat name",
        "maxGraphemes": 64
      },
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 2000000,
        "description": "picture of the cat"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "some example cat lexicon"
}

Lexicon Garden

@