changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "result": {
+ "additionalProperties": true,
+ "description": "Postal mail workflow threads plus pagination.",
+ "properties": {
+ "pagination": {
+ "additionalProperties": false,
+ "description": "Pagination metadata for the current result set.",
+ "properties": {
+ "has_more": {
+ "description": "Whether another page is available.",
+ "type": "boolean"
+ },
+ "limit": {
+ "description": "Maximum records requested.",
+ "type": "integer"
+ },
+ "offset": {
+ "description": "Records skipped before this page.",
+ "type": "integer"
+ },
+ "total": {
+ "description": "Total matching records when available.",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "postal_threads": {
+ "description": "Physical-mail workflow thread records.",
+ "items": {
+ "additionalProperties": true,
+ "description": "One returned record.",
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "postal_threads",
+ "pagination"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "type": "object"
+}