working_capital_analysis
Analyze working capital changes and efficiency to assess financial health and operational performance between specified start and end dates.
Instructions
Analyze working capital changes and efficiency
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | ||
startDate | Yes |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"format": "date",
"type": "string"
},
"startDate": {
"format": "date",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}