get_vote_results
Retrieve aggregate plenary vote counts (yes/no/abstain) for Korean National Assembly bills. Use to find a bill and obtain its BILL_ID for per-member vote analysis.
Instructions
의안별 본회의 표결현황을 조회합니다 — 집계 결과(찬성/반대/기권 건수).
Get plenary vote results by bill (aggregate yes/no/abstain counts). This is STEP 1 of the per-member vote analysis workflow.
Typical vote analysis workflow:
get_vote_results(assembly=assembly, bill_name=...) → find the bill, note its BILL_ID
get_member_votes(bill_id=BILL_ID, assembly=assembly) → get per-member votes
Filter votes by party, or compare party breakdowns
NOT this tool: • For individual member votes → use get_member_votes (requires BILL_ID from this tool)
Args: assembly: 대수 (예: "22") — 필수 bill_no: 의안번호로 필터 (선택, 예: "2216983") — BILL_NO(숫자), BILL_ID 아님 bill_name: 의안명 키워드로 필터 (선택, 예: "국민투표법") page: 페이지 번호 (기본값: 1) page_size: 페이지당 결과수 (기본값: 10)
Returns: votes: 표결 목록 — BILL_ID(★ get_member_votes에 필요), BILL_NO, BILL_NAME, PROC_DT(표결일), MEMBER_TCNT(재석), VOTE_TCNT(투표), YES_TCNT(찬성), NO_TCNT(반대), BLANK_TCNT(기권), PROC_RESULT_CD(처리결과), LINK_URL count: 이번 페이지 반환 건수 total_count: 전체 건수 has_more: True이면 page+1로 재호출
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| bill_no | No | ||
| assembly | Yes | ||
| bill_name | No | ||
| page_size | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||