Record declaring a userstyle's contents and metadata.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxGraphemes: 300 graphemespreviewImage
blob
Optional
No description available.
maxSize: 1.0 MBsourceCode
string
Required
No description available.
title
string
Required
No description available.
maxGraphemes: 140 graphemesminGraphemes: 1 graphemesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"sourceCode",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxGraphemes": 140,
"minGraphemes": 1
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"sourceCode": {
"type": "string"
},
"description": {
"type": "string",
"maxGraphemes": 300
},
"previewImage": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 1000000
}
}
},
"description": "Record declaring a userstyle's contents and metadata."
}