get_section_content
Retrieve specific content sections from food standards documents to access preparation guidelines and service requirements.
Instructions
Get content from a specific section of the food standards document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | Yes | ||
section_name | Yes | Name of the section to retrieve content from |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 1000,
"description": "",
"type": "number"
},
"section_name": {
"description": "Name of the section to retrieve content from",
"type": "string"
}
},
"required": [
"section_name",
"limit"
],
"type": "object"
}