com.natespilman.guestbook.entry

natespilman.at

Documentation

A signed guestbook entry.

main record

A signed guestbook entry.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

When the entry was signed.

subject string did Required

The DID of the person whose guestbook this entry is signed for.

text string Required

The message left in the guestbook.

maxLength: 2000 bytesmaxGraphemes: 500 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "text",
      "createdAt"
    ],
    "properties": {
      "text": {
        "type": "string",
        "maxLength": 2000,
        "description": "The message left in the guestbook.",
        "maxGraphemes": 500
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "The DID of the person whose guestbook this entry is signed for."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the entry was signed."
      }
    }
  },
  "description": "A signed guestbook entry."
}

Lexicon Garden

@