Files
divkit/schema/div-video-data-video-source.json
T
2023-04-17 20:22:12 +03:00

58 lines
1.3 KiB
JSON

{
"definitions": {
"resolution": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"resolution"
]
},
"width": {
"$ref": "common.json#/positive_integer",
"$description": "translations.json#/div_video_video_source_resolution_width"
},
"height": {
"$ref": "common.json#/positive_integer",
"$description": "translations.json#/div_video_video_source_resolution_height"
}
},
"required": [
"type",
"width",
"height"
]
}
},
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"video_source"
]
},
"url": {
"$ref": "common.json#/url",
"$description": "translations.json#/div_video_video_source_url"
},
"resolution": {
"$ref": "#/definitions/resolution",
"$description": "translations.json#/div_video_video_source_resolution"
},
"codec": {
"type": "string",
"$description": "translations.json#/div_video_video_source_codec"
},
"mime_type": {
"type": "string",
"$description": "translations.json#/div_video_video_source_mime_type"
}
},
"required": [
"type",
"url"
]
}