An image uploaded for a site.standard.document body. Held on the record (nested in the markdown content's `images` list) so the PDS retains the blob.
Properties
alt
string
Optional
Alt text describing the image for accessibility.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesaspectRatio
ref
#aspectRatio
Optional
Intrinsic pixel dimensions, so the renderer can reserve space and avoid layout shift.
image
blob
Required
No description available.
maxSize: 5.0 MBView raw schema
{
"type": "object",
"required": [
"image"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 10000,
"description": "Alt text describing the image for accessibility.",
"maxGraphemes": 1000
},
"image": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 5000000
},
"aspectRatio": {
"ref": "#aspectRatio",
"type": "ref",
"description": "Intrinsic pixel dimensions, so the renderer can reserve space and avoid layout shift."
}
},
"description": "An image uploaded for a site.standard.document body. Held on the record (nested in the markdown content's `images` list) so the PDS retains the blob."
}