{ "$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" } } }