get_chain_details
Retrieve comprehensive details about a specific Kroger chain by providing the chain name. Returns a dictionary with relevant chain information for analysis and decision-making.
Instructions
Get detailed information about a specific Kroger chain.
Args:
chain_name: Name of the chain to get details for
Returns:
Dictionary containing chain details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chain_name": {
"title": "Chain Name",
"type": "string"
}
},
"required": [
"chain_name"
],
"type": "object"
}