Properties
| Name | Type | Description |
|---|---|---|
| nextOffset | integer | |
| queryExpansions | array | |
| relatedSearches | array | |
| similarTerms | array | |
| value | array | A list of image objects that are relevant to the query. If there are no results, the List is empty. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Images",
"title": "Images",
"required": [
"value"
],
"properties": {
"nextOffset": {
"type": "integer",
"format": "int32",
"readOnly": true
},
"queryExpansions": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/Query"
}
},
"relatedSearches": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/Query"
}
},
"similarTerms": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/Query"
}
},
"value": {
"type": "array",
"description": "A list of image objects that are relevant to the query. If there are no results, the List is empty.",
"items": {
"$ref": "#/components/schemas/ImageObject"
}
}
},
"description": "Defines an image answer",
"allOf": [
{
"$ref": "#/components/schemas/SearchResultsAnswer"
}
]
}