generate_comparison_table
Create a financial comparison table for multiple companies using DART API data, analyzing key metrics like revenue, net income, and total assets for a specified fiscal year and report type.
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"
}