changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "results": {
+ "description": "Array of search result items",
+ "items": {
+ "properties": {
+ "excerpt": {
+ "description": "Content excerpt from search result",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Page ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "space": {
+ "description": "Space name containing the page",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Page status (current, draft, etc)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Page title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Content type (page, attachment, etc)",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of search results",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "results"
+ ],
+ "type": "object"
+}