removedInput schema / properties / query
Removed value: -{
- "title": "Query",
- "type": "string"
-}
addedInput schema / properties / word
Added value: +{
+ "title": "Word",
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "query"
-]New value: +[
+ "word"
+]
removedOutput schema / $defs
Removed value: -{
- "SearchResult": {
- "description": "Search result from DanNet",
- "properties": {
- "definition": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "Definition",
- "title": "Definition"
- },
- "label": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "Synset label",
- "title": "Label"
- },
- "synset_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "Associated synset ID",
- "title": "Synset Id"
- },
- "word": {
- "description": "The word form",
- "title": "Word",
- "type": "string"
- }
- },
- "required": [
- "word",
- "synset_id",
- "label",
- "definition"
- ],
- "title": "SearchResult",
- "type": "object"
- }
-}
removedOutput schema / properties / result / anyOf
Removed value: -[
- {
- "items": {
- "$ref": "#/$defs/SearchResult"
- },
- "type": "array"
- },
- {
- "additionalProperties": true,
- "type": "object"
- }
-]
addedOutput schema / properties / result / items
Added value: +{
+ "additionalProperties": true,
+ "type": "object"
+}
addedOutput schema / properties / result / type
Added value: +"array"