An application record.
Record Key
tid
Timestamp-based ID
Properties
description
string
Optional
An optional description of the application.
distributions
array
of
ref
com.atproto.repo.strongRef
Required
A list of strong references to distribution records.
name
string
Required
The name of the application.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"distributions"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the application."
},
"description": {
"type": "string",
"description": "An optional description of the application."
},
"distributions": {
"type": "array",
"items": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"description": "A list of strong references to distribution records."
}
}
},
"description": "An application record."
}