at.noted.note

noted.at

Documentation

Record representing a single note

main record

Record representing a single note

Record Key tid Timestamp-based ID

Properties

body string Required

No description available.

maxLength: 5000 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

title string Required

No description available.

maxLength: 500 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "body",
      "createdAt"
    ],
    "properties": {
      "body": {
        "type": "string",
        "maxLength": 5000
      },
      "title": {
        "type": "string",
        "maxLength": 500
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "Record representing a single note"
}

Lexicon Garden

@