changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "dictionaryTerms": {
+ "type": "number"
+ },
+ "glossaryTerms": {
+ "type": "number"
+ },
+ "query": {
+ "type": "string"
+ },
+ "results": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "canonicalUrl": {
+ "type": "string"
+ },
+ "definition": {
+ "type": "string"
+ },
+ "group": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "source": {
+ "type": "string"
+ },
+ "term": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "term",
+ "definition",
+ "source",
+ "url",
+ "canonicalUrl"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "query",
+ "results",
+ "glossaryTerms",
+ "dictionaryTerms"
+ ],
+ "type": "object"
+}