changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "description": "Rows for the current page.",
+ "items": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "has_more": {
+ "description": "Whether another page is available.",
+ "type": "boolean"
+ },
+ "meta": {
+ "additionalProperties": false,
+ "properties": {
+ "count": {
+ "description": "Number of rows returned in this page.",
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "count"
+ ],
+ "type": "object"
+ },
+ "next_cursor": {
+ "description": "Opaque cursor for the next page, or null when this is the last page.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "data",
+ "next_cursor",
+ "has_more",
+ "meta"
+ ],
+ "type": "object"
+}