A record representing an uploaded file blob with metadata.
Record Key
any
Any valid record key
Properties
attribution
string
at-identifier
Optional
Handle or DID of the account to attribute this upload to.
blob
blob
Required
The uploaded blob reference. Note: Individual PDS instances may enforce lower size limits.
maxSize: 1000.0 MBchecksum
ref
#checksum
Optional
Optional cryptographic checksum for integrity verification.
createdAt
string
datetime
Required
Timestamp when this record was created.
file
ref
#file
Required
Metadata about the file.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"blob",
"createdAt",
"file"
],
"properties": {
"blob": {
"type": "blob",
"accept": [
"*/*"
],
"maxSize": 1000000000,
"description": "The uploaded blob reference. Note: Individual PDS instances may enforce lower size limits."
},
"file": {
"ref": "#file",
"type": "ref",
"description": "Metadata about the file."
},
"checksum": {
"ref": "#checksum",
"type": "ref",
"description": "Optional cryptographic checksum for integrity verification."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when this record was created."
},
"attribution": {
"type": "string",
"format": "at-identifier",
"description": "Handle or DID of the account to attribute this upload to."
}
}
},
"description": "A record representing an uploaded file blob with metadata."
}