changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "asOf": {
+ "description": "The snapshot anchor this page was computed at — pass it back on later pages to keep the window stable while new requests arrive.",
+ "type": "string"
+ },
+ "items": {
+ "description": "The requested page of elicitations, newest first.",
+ "items": {
+ "additionalProperties": {},
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "page": {
+ "description": "The 1-based page that was served.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "pageSize": {
+ "description": "Items per page that was applied.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "scope": {
+ "description": "The scope that was served.",
+ "enum": [
+ "me",
+ "org"
+ ],
+ "type": "string"
+ },
+ "total": {
+ "description": "Total matching requests — the last page is ceil(total / pageSize).",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "items",
+ "page",
+ "pageSize",
+ "asOf",
+ "total",
+ "scope"
+ ],
+ "type": "object"
+}