Properties
| Name | Type | Description |
|---|---|---|
| nextOffset | integer | |
| pivotSuggestions | array | |
| queryExpansions | array | |
| scenario | string | |
| value | array | A list of video objects that are relevant to the query. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Videos",
"title": "Videos",
"required": [
"value"
],
"properties": {
"nextOffset": {
"type": "integer",
"format": "int32",
"readOnly": true
},
"pivotSuggestions": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/PivotSuggestions"
}
},
"queryExpansions": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/Query"
}
},
"scenario": {
"type": "string",
"readOnly": true,
"enum": [
"List",
"SingleDominantVideo"
],
"x-ms-enum": {
"modelAsString": false,
"name": "VideoQueryScenario"
}
},
"value": {
"type": "array",
"description": "A list of video objects that are relevant to the query.",
"items": {
"$ref": "#/components/schemas/VideoObject"
}
}
},
"description": "Defines a video answer.",
"allOf": [
{
"$ref": "#/components/schemas/SearchResultsAnswer"
}
]
}