{
    "title": "Asociar ingrediente a un punto para indicar que no hay",
    "type": "object",
    "properties": {
        "ingredient_id": {
            "description": "Id del ingrediente que se debe asociar o desasociar",
            "type": "integer"
        },
        "action": {
            "description": "Indica si se debe asociar o desasociar el ingrediente",
            "type": "string",
            "enum": ["add", "delete"]
        }
    },
    "required": ["ingredient_id", "action"]
}