addedOutput schema / properties / content_meta
Added value: +{
+ "additionalProperties": false,
+ "description": "作品上下文信息,便于结合转写内容做口播分析。",
+ "properties": {
+ "author": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "avatar_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "作者头像链接。"
+ },
+ "name": {
+ "description": "作者昵称。",
+ "type": "string"
+ },
+ "profile_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "作者主页链接。"
+ },
+ "user_id": {
+ "description": "作者用户 ID。",
+ "type": "string"
+ }
+ },
+ "required": [
+ "user_id",
+ "name",
+ "profile_url",
+ "avatar_url"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "作者信息。"
+ },
+ "content_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "作品链接。"
+ },
+ "description": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "平台作品原始描述、正文或配文。"
+ },
+ "duration_ms": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "音视频时长,单位毫秒。"
+ },
+ "title": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "作品标题;平台无标题时为 null。"
+ }
+ },
+ "required": [
+ "content_url",
+ "title",
+ "description",
+ "duration_ms",
+ "author"
+ ],
+ "type": "object"
+}
changedOutput schema / required
Previous value: -[
- "job_id",
- "status",
- "is_terminal",
- "platform",
- "source_id",
- "content_type",
- "transcript",
- "error",
- "next_poll_after_seconds",
- "next_action",
- "message"
-]New value: +[
+ "job_id",
+ "status",
+ "is_terminal",
+ "platform",
+ "content_id",
+ "source_id",
+ "content_type",
+ "content_meta",
+ "transcript",
+ "error",
+ "next_poll_after_seconds",
+ "next_action",
+ "message"
+]