changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total count of tickets",
+ "type": "number"
+ },
+ "next_page": {
+ "description": "URL to next page",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tickets": {
+ "description": "List of tickets",
+ "items": {
+ "properties": {
+ "created_at": {
+ "description": "Creation timestamp",
+ "type": "string"
+ },
+ "description": {
+ "description": "Ticket description",
+ "type": "string"
+ },
+ "id": {
+ "description": "Ticket ID",
+ "type": "number"
+ },
+ "priority": {
+ "description": "Ticket priority",
+ "type": "string"
+ },
+ "status": {
+ "description": "Ticket status",
+ "type": "string"
+ },
+ "subject": {
+ "description": "Ticket subject",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}