check_chain_exists
Verify the existence of a specific chain in the Kroger system by providing the chain name. Returns a dictionary confirming whether the chain is present.
Instructions
Check if a chain exists in the Kroger system.
Args:
chain_name: Name of the chain to check
Returns:
Dictionary indicating whether the chain exists
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"
}