generate_financial_dashboard
Create a comprehensive financial analysis dashboard using DART API to visualize key financial metrics like revenue, net income, and total assets for multiple companies.
Instructions
종합적인 재무 분석 대시보드를 생성합니다
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| corp_codes | Yes | 분석할 회사들의 고유번호 목록 | |
| report_code | Yes | 보고서 코드 | |
| year | Yes | 분석할 사업연도 |
Input Schema (JSON Schema)
{
"properties": {
"corp_codes": {
"description": "분석할 회사들의 고유번호 목록",
"items": {
"type": "string"
},
"type": "array"
},
"report_code": {
"description": "보고서 코드",
"type": "string"
},
"year": {
"description": "분석할 사업연도",
"type": "string"
}
},
"required": [
"corp_codes",
"year",
"report_code"
],
"type": "object"
}