Basic EXIF metadata for a photo. Integers are scaled by 1000000 to accommodate decimal values and potentially other tags in the future.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
dateTimeOriginal
string
datetime
Optional
An RFC 3339 formatted timestamp.
exposureTime
integer
Optional
No description available.
fNumber
integer
Optional
No description available.
flash
string
Optional
No description available.
focalLengthIn35mmFormat
integer
Optional
No description available.
iSO
integer
Optional
No description available.
lensMake
string
Optional
No description available.
lensModel
string
Optional
No description available.
make
string
Optional
No description available.
model
string
Optional
No description available.
photo
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"photo",
"createdAt"
],
"properties": {
"iSO": {
"type": "integer"
},
"make": {
"type": "string"
},
"flash": {
"type": "string"
},
"model": {
"type": "string"
},
"photo": {
"type": "string",
"format": "at-uri"
},
"fNumber": {
"type": "integer"
},
"lensMake": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"lensModel": {
"type": "string"
},
"exposureTime": {
"type": "integer"
},
"dateTimeOriginal": {
"type": "string",
"format": "datetime"
},
"focalLengthIn35mmFormat": {
"type": "integer"
}
}
},
"description": "Basic EXIF metadata for a photo. Integers are scaled by 1000000 to accommodate decimal values and potentially other tags in the future."
}