A paste
Record Key
tid
Timestamp-based ID
Properties
content
blob
Required
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Optional description of the paste
maxLength: 2048 bytesmaxGraphemes: 1024 graphemeslang
string
Optional
Language/syntax identifier for highlighting
maxLength: 32 bytesthumbnail
blob
Optional
No description available.
maxSize: 102.4 KBtitle
string
Optional
No description available.
maxLength: 256 bytesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content",
"createdAt"
],
"properties": {
"lang": {
"type": "string",
"maxLength": 32,
"description": "Language/syntax identifier for highlighting"
},
"title": {
"type": "string",
"maxLength": 256
},
"content": {
"type": "blob",
"accept": [
"*/*"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"thumbnail": {
"type": "blob",
"accept": [
"image/webp"
],
"maxSize": 102400
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2048,
"description": "Optional description of the paste",
"maxGraphemes": 1024
}
}
},
"description": "A paste"
}