Edamam · JSON Structure

Meal Planner Api Meal Plan Response Structure

MealPlanResponse schema from Edamam Meal Planner API

Type: object Properties: 2
RestaurantFoodNutritionUPC

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

Properties

status selection

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/edamam/refs/heads/main/json-structure/meal-planner-api-meal-plan-response-structure.json",
  "name": "MealPlanResponse",
  "description": "MealPlanResponse schema from Edamam Meal Planner API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "example": "OK"
    },
    "selection": {
      "type": "array",
      "description": "One entry per day, each containing selected sections.",
      "items": {
        "type": "object",
        "properties": {
          "sections": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {
                "_links": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    }
  }
}