No description available.
Record Key
literal:self
Fixed literal value
Properties
avatar
blob
Optional
Small image to be displayed on the profile.
maxSize: 1.0 MBbanner
blob
Optional
Larger header image to be displayed on the profile.
maxSize: 1.0 MBcreatedAt
string
Optional
No description available.
description
string
Optional
Free-form profile description text.
maxLength: 2500 bytesmaxGraphemes: 256 graphemesdisplayName
string
Required
No description available.
maxLength: 640 bytesmaxGraphemes: 64 graphemespronouns
string
Optional
Free-form text to describe pronouns.
maxLength: 200 bytesmaxGraphemes: 20 graphemeswebsite
string
Optional
No description available.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"displayName"
],
"properties": {
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Small image to be displayed on the profile."
},
"banner": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Larger header image to be displayed on the profile."
},
"website": {
"type": "string"
},
"pronouns": {
"type": "string",
"maxLength": 200,
"description": "Free-form text to describe pronouns.",
"maxGraphemes": 20
},
"createdAt": {
"type": "string"
},
"description": {
"type": "string",
"maxLength": 2500,
"description": "Free-form profile description text.",
"maxGraphemes": 256
},
"displayName": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
}
}
}
}