A linked account record containing external account information
Properties
icon
string
Required
Icon identifier or URL for the linked account
link
string
uri
Required
URL to the linked account
name
string
Required
Display name of the linked account
order
integer
Optional
Sort order for displaying linked accounts (lower numbers appear first). Defaults to 999 if not specified.
View raw schema
{
"type": "record",
"record": {
"type": "object",
"required": [
"icon",
"name",
"link"
],
"properties": {
"icon": {
"type": "string",
"description": "Icon identifier or URL for the linked account"
},
"link": {
"type": "string",
"format": "uri",
"description": "URL to the linked account"
},
"name": {
"type": "string",
"description": "Display name of the linked account"
},
"order": {
"type": "integer",
"description": "Sort order for displaying linked accounts (lower numbers appear first). Defaults to 999 if not specified."
}
}
},
"description": "A linked account record containing external account information"
}