Files
divkit/schema/div-video-source.json
2023-05-17 15:59:47 +03:00

59 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_source_resolution_width"
},
"height": {
"$ref": "common.json#/positive_integer",
"$description": "translations.json#/div_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_source_url"
},
"resolution": {
"$ref": "#/definitions/resolution",
"$description": "translations.json#/div_video_source_resolution"
},
"mime_type": {
"type": "string",
"$description": "translations.json#/div_video_source_mime_type"
},
"bitrate": {
"type": "integer",
"$description": "translations.json#/div_video_source_bitrate"
}
},
"required": [
"type",
"url",
"mime_type"
]
}