changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "RoomListItem": {
+ "properties": {
+ "created_at": {
+ "title": "Created At",
+ "type": "string"
+ },
+ "description": {
+ "title": "Description",
+ "type": "string"
+ },
+ "last_activity_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Last Activity At"
+ },
+ "message_count": {
+ "title": "Message Count",
+ "type": "integer"
+ },
+ "uuid": {
+ "title": "Uuid",
+ "type": "string"
+ }
+ },
+ "required": [
+ "uuid",
+ "description",
+ "message_count",
+ "last_activity_at",
+ "created_at"
+ ],
+ "title": "RoomListItem",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "rooms": {
+ "items": {
+ "$ref": "#/$defs/RoomListItem"
+ },
+ "title": "Rooms",
+ "type": "array"
+ },
+ "total": {
+ "title": "Total",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "rooms",
+ "total"
+ ],
+ "title": "ListRoomsResult",
+ "type": "object"
+}