get_resilience_data
Retrieve resilience data within a specified date range using ISO-formatted start and end dates. Provides a dictionary of resilience metrics for analysis or integration.
Instructions
Get resilience data for a specific date range.
Args:
start_date: Start date in ISO format (YYYY-MM-DD)
end_date: End date in ISO format (YYYY-MM-DD)
Returns:
Dictionary containing resilience data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"title": "End Date",
"type": "string"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"title": "get_resilience_dataArguments",
"type": "object"
}