curl --location --request GET 'http://localhost:8080/api/v1/accounting/usage-history/trend' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'{
"asset_id": 3,
"asset_name": "ENG 카메라",
"metric_type": "usage_rate",
"unit": "%",
"data": [
{
"year": 2023,
"monthly": [
{
"month": 1,
"value": 35
},
{
"month": 2,
"value": 70
},
{
"month": 3,
"value": 45
},
{
"month": 4,
"value": 60
},
{
"month": 5,
"value": 80
},
{
"month": 6,
"value": 40
},
{
"month": 7,
"value": 55
},
{
"month": 8,
"value": 90
},
{
"month": 9,
"value": 30
},
{
"month": 10,
"value": 60
},
{
"month": 11,
"value": 50
},
{
"month": 12,
"value": 25
}
]
},
{
"year": 2024,
"monthly": [
{
"month": 1,
"value": 45
},
{
"month": 2,
"value": 80
},
{
"month": 3,
"value": 50
},
{
"month": 4,
"value": 70
},
{
"month": 5,
"value": 85
},
{
"month": 6,
"value": 45
},
{
"month": 7,
"value": 60
},
{
"month": 8,
"value": 75
},
{
"month": 9,
"value": 40
},
{
"month": 10,
"value": 65
},
{
"month": 11,
"value": 55
},
{
"month": 12,
"value": 70
}
]
}
],
"comparison_summary": {
"usage_increase_rate": 25,
"actual_usage_increase_rate": 48,
"utilization_increase_rate": 15
}
}