changedOutput schema / properties / video / anyOf
Previous value: -[
- {
- "properties": {
- "duration_ms": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "description": "播放器资源时长,毫秒;当前不可用时为 null"
- },
- "media_type": {
- "description": "播放器资源类型:video 表示视频,audio 表示音频,unknown 表示未知",
- "enum": [
- "video",
- "audio",
- "unknown"
- ],
- "type": "string"
- },
- "play_url": {
- "description": "抖音平台播放器资源链接;视频作品通常为 mp4,图文作品可能为音频播放资源;不同于作品页面或分享链接,不用于查询作品详情或评论",
- "type": "string"
- }
- },
- "required": [
- "play_url",
- "duration_ms",
- "media_type"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "properties": {
+ "duration_ms": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "播放器资源时长,毫秒;当前不可用时为 null"
+ },
+ "height": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "播放器资源高度,像素;当前不可用时为 null"
+ },
+ "media_type": {
+ "description": "播放器资源类型:video 表示视频,audio 表示音频,unknown 表示未知",
+ "enum": [
+ "video",
+ "audio",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "play_url": {
+ "description": "抖音平台播放器资源链接;视频作品通常为 mp4,图文作品可能为音频播放资源;不同于作品页面或分享链接,不用于查询作品详情或评论",
+ "type": "string"
+ },
+ "width": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "播放器资源宽度,像素;当前不可用时为 null"
+ }
+ },
+ "required": [
+ "play_url",
+ "duration_ms",
+ "width",
+ "height",
+ "media_type"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]