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 pages and databases",
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Notion object ID",
+ "type": "string"
+ },
+ "object": {
+ "description": "Type of result",
+ "enum": [
+ "page",
+ "database"
+ ],
+ "type": "string"
+ },
+ "title": {
+ "description": "Title content blocks",
+ "items": {
+ "properties": {
+ "text": {
+ "properties": {
+ "content": {
+ "description": "Title text",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": {
+ "description": "Block type",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}