list_indicators
Retrieve a list of indicators for a specified dataset, such as 'IFS', 'DOT', or 'BOP', from the local indicators directory. Simplifies data access and analysis with JSON file integration.
Instructions
Returns a list of indicators for the specified dataset, read from the corresponding .json file in the local indicators directory.
Args:
dataset_id (str): Dataset ID, such as "IFS", "DOT", "BOP", etc.
Returns:
list: List of indicators.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dataset_id": {
"title": "Dataset Id",
"type": "string"
}
},
"required": [
"dataset_id"
],
"title": "list_indicatorsArguments",
"type": "object"
}