get_food_safety_info
Retrieve food safety guidelines and hygiene standards for specific topics like temperature control, storage practices, and sanitation procedures.
Instructions
Get food safety information and hygiene standards
Input Schema
Name | Required | Description | Default |
---|---|---|---|
topic | Yes | Specific food safety topic (temperature, storage, hygiene, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"topic": {
"description": "Specific food safety topic (temperature, storage, hygiene, etc.)",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}