changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "jokes": {
+ "description": "Array of matching jokes",
+ "items": {
+ "properties": {
+ "categories": {
+ "description": "List of categories",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "Unique joke identifier",
+ "type": "string"
+ },
+ "joke": {
+ "description": "The joke text",
+ "type": "string"
+ },
+ "url": {
+ "description": "URL to the joke on chucknorris.io",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "joke",
+ "categories",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "query": {
+ "description": "The search query used",
+ "type": "string"
+ },
+ "total": {
+ "description": "Total number of matching jokes",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "query",
+ "jokes"
+ ],
+ "type": "object"
+}