A single-image photo post with optional caption.
Record Key
tid
Timestamp-based ID
Properties
alt
string
Optional
Alt text for accessibility.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesaspectRatio
ref
#aspectRatio
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
facets
array
of
ref
app.didpic.richtext.facet
Optional
No description available.
image
blob
Required
No description available.
maxSize: 5.0 MBlabels
ref
#selfLabels
Optional
Self-applied content labels.
text
string
Optional
Caption text.
maxLength: 22000 bytesmaxGraphemes: 2200 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"image",
"createdAt"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 10000,
"description": "Alt text for accessibility.",
"maxGraphemes": 1000
},
"text": {
"type": "string",
"maxLength": 22000,
"description": "Caption text.",
"maxGraphemes": 2200
},
"image": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 5000000
},
"facets": {
"type": "array",
"items": {
"ref": "app.didpic.richtext.facet",
"type": "ref"
}
},
"labels": {
"ref": "#selfLabels",
"type": "ref",
"description": "Self-applied content labels."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"aspectRatio": {
"ref": "#aspectRatio",
"type": "ref"
}
}
},
"description": "A single-image photo post with optional caption."
}