An array of refs to various preferences.
View raw schema
{
"type": "array",
"items": {
"refs": [
"#publishingScopesPref"
],
"type": "union"
},
"description": "An array of refs to various preferences."
}
An array of refs to various preferences.
{
"type": "array",
"items": {
"refs": [
"#publishingScopesPref"
],
"type": "union"
},
"description": "An array of refs to various preferences."
}
A view of an actor's profile.
avatar
string
uri
Optional
A link to the profile's avatar
createdAt
string
datetime
Optional
When the profile record was first created
description
string
Optional
The biography associated to the profile
maxLength: 5000 bytesmaxGraphemes: 500 graphemesdid
string
did
Required
The DID of the profile
displayName
string
Required
The display name associated to the profile
maxLength: 640 bytesmaxGraphemes: 64 graphemeshandle
string
handle
Required
The handle of the profile
{
"type": "object",
"required": [
"did",
"handle",
"displayName"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The DID of the profile"
},
"avatar": {
"type": "string",
"format": "uri",
"description": "A link to the profile's avatar"
},
"handle": {
"type": "string",
"format": "handle",
"description": "The handle of the profile"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the profile record was first created"
},
"description": {
"type": "string",
"maxLength": 5000,
"description": "The biography associated to the profile",
"maxGraphemes": 500
},
"displayName": {
"type": "string",
"maxLength": 640,
"description": "The display name associated to the profile",
"maxGraphemes": 64
}
},
"description": "A view of an actor's profile."
}
Preferences for an user's publishing scopes.
{
"type": "object",
"required": [
"defaultScope"
],
"properties": {
"defaultScope": {
"type": "string",
"description": "What publishing scope to mark a clip as by default",
"knownValues": [
"public",
"unlisted"
]
}
},
"description": "Preferences for an user's publishing scopes."
}