Edamam · Schema

Nutrient

Nutrient schema from Edamam Recipe Search API

RestaurantFoodNutritionUPC

Properties

Name Type Description
label string
quantity number
unit string
View JSON Schema on GitHub

JSON Schema

recipe-search-api-nutrient-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Nutrient",
  "description": "Nutrient schema from Edamam Recipe Search API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/edamam/refs/heads/main/json-schema/recipe-search-api-nutrient-schema.json",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "example": "Energy"
    },
    "quantity": {
      "type": "number",
      "example": 4228.79
    },
    "unit": {
      "type": "string",
      "example": "kcal"
    }
  }
}