TheCocktailDB · JSON Structure

Thecocktaildb Cocktails Response Structure

Response containing a list of cocktails

Type: object Properties: 1
CocktailsDrinksRecipesFood And BeverageOpen Data

CocktailsResponse is a JSON Structure definition published by TheCocktailDB, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

drinks

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/thecocktaildb/refs/heads/main/json-structure/thecocktaildb-cocktails-response-structure.json",
  "name": "CocktailsResponse",
  "description": "Response containing a list of cocktails",
  "type": "object",
  "properties": {
    "drinks": {
      "type": "array",
      "description": "Array of cocktail objects; null if no results found",
      "items": {
        "$ref": "#/components/schemas/Drink"
      },
      "nullable": true
    }
  }
}