changedOutput schema / properties / items / items / properties / video / anyOf
Previous value: -[
- {
- "properties": {
- "duration_ms": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频时长,毫秒;不可用时为 null。"
- },
- "play_url": {
- "description": "返回 video 对象时为可播放 MP4 资源链接;不是作品分享页链接。复用或分享作品时使用 share_url。",
- "type": "string"
- }
- },
- "required": [
- "play_url",
- "duration_ms"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "properties": {
+ "duration_ms": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频时长,毫秒;不可用时为 null。"
+ },
+ "height": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频高度,像素;不可用时为 null。"
+ },
+ "play_url": {
+ "description": "返回 video 对象时为可播放 MP4 资源链接;不是作品分享页链接。复用或分享作品时使用 share_url。",
+ "type": "string"
+ },
+ "width": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频宽度,像素;不可用时为 null。"
+ }
+ },
+ "required": [
+ "play_url",
+ "duration_ms",
+ "width",
+ "height"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]