removedOutput schema / $defs / GetTiktokForYouFeedResponseData
Removed value: -{
- "additionalProperties": true,
- "properties": {
- "cursor": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Pagination cursor when returned by the provider.",
- "title": "Cursor"
- },
- "hasMore": {
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Whether additional pages are available.",
- "title": "Hasmore"
- },
- "total": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Total result count when provided by the upstream provider.",
- "title": "Total"
- }
- },
- "title": "GetTiktokForYouFeedResponseData",
- "type": "object"
-}
addedOutput schema / $defs / GetTiktokForYouFeedResponseDataItem
Added value: +{
+ "additionalProperties": true,
+ "properties": {
+ "title": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Video title or caption.",
+ "title": "Title"
+ },
+ "video_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "TikTok video id.",
+ "title": "Video Id"
+ }
+ },
+ "title": "GetTiktokForYouFeedResponseDataItem",
+ "type": "object"
+}
changedOutput schema / properties / data / anyOf
Previous value: -[
- {
- "$ref": "#/$defs/GetTiktokForYouFeedResponseData"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "items": {
+ "$ref": "#/$defs/GetTiktokForYouFeedResponseDataItem"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / data / description
Previous value: -"Capability-specific payload from the upstream provider."New value: +"For-you feed videos from the upstream provider."
addedOutput schema / properties / data / title
Added value: +"Data"