changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "TeamsMessage": {
+ "properties": {
+ "content": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Message content",
+ "title": "Content"
+ },
+ "message_id": {
+ "description": "Message ID",
+ "title": "Message Id",
+ "type": "string"
+ },
+ "thread_id": {
+ "description": "Thread ID as a string in the format '1743086901347'",
+ "title": "Thread Id",
+ "type": "string"
+ }
+ },
+ "required": [
+ "thread_id",
+ "message_id",
+ "content"
+ ],
+ "title": "TeamsMessage",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "cursor": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Cursor to retrieve the next page of messages.",
+ "title": "Cursor"
+ },
+ "items": {
+ "description": "List of channel messages or threads",
+ "items": {
+ "$ref": "#/$defs/TeamsMessage"
+ },
+ "title": "Items",
+ "type": "array"
+ },
+ "limit": {
+ "description": "Page limit, maximum number of items to retrieve",
+ "title": "Limit",
+ "type": "integer"
+ },
+ "total": {
+ "description": "Total items available for retrieval",
+ "title": "Total",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "cursor",
+ "limit",
+ "total",
+ "items"
+ ],
+ "title": "PagedTeamsMessages",
+ "type": "object"
+}