TheMealDB · JSON Structure

Themealdb Category Structure

Meal category with thumbnail and description

Type: object Properties: 4
RecipesMealsFoodCooking

Category is a JSON Structure definition published by TheMealDB, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

idCategory strCategory strCategoryThumb strCategoryDescription

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/themealdb/refs/heads/main/json-structure/themealdb-category-structure.json",
  "name": "Category",
  "description": "Meal category with thumbnail and description",
  "type": "object",
  "properties": {
    "idCategory": {
      "type": "string",
      "description": "Unique category identifier",
      "example": "1"
    },
    "strCategory": {
      "type": "string",
      "description": "Category name",
      "example": "Beef"
    },
    "strCategoryThumb": {
      "type": "string",
      "description": "Category thumbnail image URL"
    },
    "strCategoryDescription": {
      "type": "string",
      "description": "Description of the category"
    }
  }
}