changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "has_more": {
+ "description": "Whether more results exist",
+ "type": "boolean"
+ },
+ "next_cursor": {
+ "description": "Pagination cursor for next page",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "object": {
+ "description": "Always 'list'",
+ "type": "string"
+ },
+ "results": {
+ "description": "Array of matching database rows (pages)",
+ "items": {
+ "properties": {
+ "created_time": {
+ "description": "ISO 8601 creation timestamp",
+ "type": "string"
+ },
+ "id": {
+ "description": "Page ID",
+ "type": "string"
+ },
+ "last_edited_time": {
+ "description": "ISO 8601 last edit timestamp",
+ "type": "string"
+ },
+ "object": {
+ "description": "Object type ('page')",
+ "type": "string"
+ },
+ "properties": {
+ "description": "Row property values",
+ "type": "object"
+ },
+ "url": {
+ "description": "Notion web URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}