Record containing a lognship log entry.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this log entry was originally created.
facets
array
of
ref
com.lognship.richtext.facet
Optional
Annotations of byte ranges within the entry's text.
project
string
at-uri
Required
AT URI of the lognship project this log entry belongs to.
text
string
Required
The primary log entry content.
maxLength: 20480 bytesmaxGraphemes: 2048 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"project",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 20480,
"description": "The primary log entry content.",
"maxGraphemes": 2048
},
"facets": {
"type": "array",
"items": {
"ref": "com.lognship.richtext.facet",
"type": "ref"
},
"description": "Annotations of byte ranges within the entry's text."
},
"project": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the lognship project this log entry belongs to."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this log entry was originally created."
}
}
},
"description": "Record containing a lognship log entry."
}