com.test.note

scan.is-testing.xyz

Documentation

A simple text note record.

main record

A simple text note record.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Client-declared timestamp when the note was created.

tags array of string Optional

Optional set of tags for the note.

maxLength: 8 items
text string Required

The content of the note.

maxLength: 3000 bytesmaxGraphemes: 500 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "text",
      "createdAt"
    ],
    "properties": {
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 64
        },
        "maxLength": 8,
        "description": "Optional set of tags for the note."
      },
      "text": {
        "type": "string",
        "maxLength": 3000,
        "description": "The content of the note.",
        "maxGraphemes": 500
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when the note was created."
      }
    }
  },
  "description": "A simple text note record."
}

Lexicon Garden

@