Optional provenance metadata for an image content item.
Properties
No description available.
maxLength: 500 bytes
No description available.
maxLength: 500 bytes
A valid URI.
maxLength: 2000 bytes
View raw schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"maxLength": 2000
},
"credit": {
"type": "string",
"maxLength": 500
},
"license": {
"type": "string",
"maxLength": 500
}
},
"description": "Optional provenance metadata for an image content item."
}
No description available.
Properties
No description available.
CID of the saved image blob.
Hex color code of the most dominant color, for placeholder rendering. Absent if unknown.
Height of the image in pixels. Absent if unknown.
CDN URL of the image, resolved server-side from the blob reference.
Width of the image in pixels. Absent if unknown.
View raw schema
{
"type": "object",
"required": [
"blobCid",
"imageUrl"
],
"properties": {
"width": {
"type": "integer",
"description": "Width of the image in pixels. Absent if unknown."
},
"height": {
"type": "integer",
"description": "Height of the image in pixels. Absent if unknown."
},
"blobCid": {
"type": "string",
"format": "cid",
"description": "CID of the saved image blob."
},
"imageUrl": {
"type": "string",
"format": "uri",
"description": "CDN URL of the image, resolved server-side from the blob reference."
},
"attribution": {
"ref": "#attribution",
"type": "ref"
},
"dominantColor": {
"type": "string",
"description": "Hex color code of the most dominant color, for placeholder rendering. Absent if unknown."
}
}
}