changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cocktails": {
+ "description": "List of matching cocktails",
+ "items": {
+ "properties": {
+ "alcoholic": {
+ "description": "Alcoholic status",
+ "type": "string"
+ },
+ "category": {
+ "description": "Drink category",
+ "type": "string"
+ },
+ "glass": {
+ "description": "Glassware type",
+ "type": "string"
+ },
+ "id": {
+ "description": "Cocktail ID",
+ "type": "string"
+ },
+ "ingredients": {
+ "description": "List of ingredients",
+ "items": {
+ "properties": {
+ "ingredient": {
+ "description": "Ingredient name",
+ "type": "string"
+ },
+ "measure": {
+ "description": "Measurement/quantity",
+ "type": "string"
+ }
+ },
+ "required": [
+ "ingredient",
+ "measure"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "Cocktail name",
+ "type": "string"
+ },
+ "thumbnail": {
+ "description": "Thumbnail image URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "category",
+ "alcoholic",
+ "glass",
+ "thumbnail",
+ "ingredients"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Number of cocktails found",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "count",
+ "cocktails"
+ ],
+ "type": "object"
+}