A declaration of a Clippr account's profile.
Record Key
literal:self
Fixed literal value
Properties
avatar
blob
Optional
Image to show on user's profiles
maxSize: 1.0 MBcreatedAt
string
datetime
Required
The creation date of the profile
description
string
Optional
Text for user to describe themselves
maxLength: 5000 bytesmaxGraphemes: 500 graphemesdisplayName
string
Required
A display name to be shown on a profile
maxLength: 640 bytesmaxGraphemes: 64 graphemesView raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"displayName"
],
"properties": {
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Image to show on user's profiles"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The creation date of the profile"
},
"description": {
"type": "string",
"maxLength": 5000,
"description": "Text for user to describe themselves",
"maxGraphemes": 500
},
"displayName": {
"type": "string",
"maxLength": 640,
"description": "A display name to be shown on a profile",
"maxGraphemes": 64
}
}
},
"description": "A declaration of a Clippr account's profile."
}