{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/nutritionix/refs/heads/main/json-schema/track-foods-response-schema.json", "title": "FoodsResponse", "description": "A response that wraps one or more fully detailed food objects.", "type": "object", "properties": { "foods": { "type": "array", "items": { "$ref": "#/components/schemas/Food" } } } }