changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "availableFilters": {
+ "additionalProperties": {},
+ "properties": {
+ "categories": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "categories",
+ "tags"
+ ],
+ "type": "object"
+ },
+ "countsByKind": {
+ "additionalProperties": {
+ "type": "number"
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "filters": {
+ "additionalProperties": {},
+ "properties": {
+ "category": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "kind": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "tagMatch": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "kind",
+ "category",
+ "tags",
+ "tagMatch"
+ ],
+ "type": "object"
+ },
+ "hasMore": {
+ "type": "boolean"
+ },
+ "indexedDocuments": {
+ "type": "number"
+ },
+ "limit": {
+ "type": "number"
+ },
+ "nextCursor": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "nextOffset": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "offset": {
+ "type": "number"
+ },
+ "query": {
+ "type": "string"
+ },
+ "results": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "category": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "excerpt": {
+ "type": "string"
+ },
+ "kind": {
+ "type": "string"
+ },
+ "path": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "kind",
+ "title",
+ "path",
+ "url",
+ "category",
+ "tags",
+ "excerpt"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "type": "number"
+ },
+ "totalMatches": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "query",
+ "filters",
+ "totalMatches",
+ "returned",
+ "offset",
+ "limit",
+ "hasMore",
+ "nextOffset",
+ "nextCursor",
+ "countsByKind",
+ "results",
+ "availableFilters",
+ "indexedDocuments"
+ ],
+ "type": "object"
+}