changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "oneOf": [
+ {
+ "properties": {
+ "antonyms": {
+ "description": "Empty array when word not found",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "found": {
+ "description": "Word not found in dictionary",
+ "enum": [
+ false
+ ],
+ "type": "boolean"
+ },
+ "synonyms": {
+ "description": "Empty array when word not found",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "word": {
+ "description": "The word queried",
+ "type": "string"
+ }
+ },
+ "required": [
+ "word",
+ "found",
+ "synonyms",
+ "antonyms"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "antonyms": {
+ "description": "List of antonym words",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "found": {
+ "description": "Word found in dictionary",
+ "enum": [
+ true
+ ],
+ "type": "boolean"
+ },
+ "synonyms": {
+ "description": "List of synonym words",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "word": {
+ "description": "The word queried",
+ "type": "string"
+ }
+ },
+ "required": [
+ "word",
+ "found",
+ "synonyms",
+ "antonyms"
+ ],
+ "type": "object"
+ }
+ ],
+ "type": "object"
+}