A declaration of a Syntax Club account profile.
Record Key
literal:self
Fixed literal value
Properties
avatar
blob
Optional
Profile picture.
maxSize: 1.0 MBcreatedAt
string
datetime
Required
Record creation timestamp.
description
string
Optional
Optional profile description.
maxGraphemes: 256 graphemesdisplayName
string
Optional
No description available.
maxGraphemes: 64 graphemesupdatedAt
string
datetime
Optional
Last profile update timestamp.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Profile picture."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Record creation timestamp."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Last profile update timestamp."
},
"description": {
"type": "string",
"description": "Optional profile description.",
"maxGraphemes": 256
},
"displayName": {
"type": "string",
"maxGraphemes": 64
}
}
},
"description": "A declaration of a Syntax Club account profile."
}