A record representing an entry in a bragsheet
Record Key
tid
Timestamp-based ID
Properties
content
blob
Optional
The content of the post
maxSize: 1.0 MBentryType
string
Optional
No description available.
maxLength: 500 bytesmaxGraphemes: 50 graphemesKnown values:
academic, professional, personalperiod
string
Optional
Free form string representing the date range (from-to), MM/YYYY, or YYYY.
publishedAt
string
datetime
Optional
Timestamp of the entry's publish time.
updatedAt
string
datetime
Optional
Timestamp of the entry's last edit.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"properties": {
"period": {
"type": "string",
"maxLegth": 5000,
"description": "Free form string representing the date range (from-to), MM/YYYY, or YYYY. ",
"maxGraphenes": 500
},
"content": {
"type": "blob",
"accept": [
"text/plain",
"text/markdown"
],
"maxSize": 1000000,
"description": "The content of the post"
},
"entryType": {
"type": "string",
"maxLength": 500,
"knownValues": [
"academic",
"professional",
"personal"
],
"maxGraphemes": 50
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the entry's last edit."
},
"publishedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the entry's publish time."
}
}
},
"description": "A record representing an entry in a bragsheet"
}