Perplexity · Schema
ImageResult
Properties
| Name | Type | Description |
|---|---|---|
| image_url | string | URL of the image |
| origin_url | string | Original URL where the image was found |
| title | string | Title or description of the image |
| width | integer | Width of the image in pixels |
| height | integer | Height of the image in pixels |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ImageResult",
"title": "ImageResult",
"properties": {
"image_url": {
"type": "string",
"title": "Image Url",
"description": "URL of the image"
},
"origin_url": {
"type": "string",
"title": "Origin Url",
"description": "Original URL where the image was found"
},
"title": {
"type": "string",
"title": "Title",
"description": "Title or description of the image"
},
"width": {
"type": "integer",
"title": "Width",
"description": "Width of the image in pixels"
},
"height": {
"type": "integer",
"title": "Height",
"description": "Height of the image in pixels"
}
},
"type": "object",
"required": [
"image_url",
"origin_url",
"title",
"width",
"height"
]
}