changedOutput schema / properties / video / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "duration_ms": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频时长,单位毫秒;没有时长时为 null"
- },
- "video_url": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "视频链接;没有视频链接时为 null"
- }
- },
- "required": [
- "video_url",
- "duration_ms"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "duration_ms": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频时长,单位毫秒;没有时长时为 null"
+ },
+ "height": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频高度,像素;没有时为 null"
+ },
+ "video_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频链接;没有视频链接时为 null"
+ },
+ "width": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "视频宽度,像素;没有时为 null"
+ }
+ },
+ "required": [
+ "video_url",
+ "duration_ms",
+ "width",
+ "height"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]