Korean Law Search
chain_dispute_prep
Prepare for a legal dispute by gathering all case law (분쟁 준비 자료). Chains: precedent search + admin appeals + constitutional decisions + special tribunal. Gathers all decision-type legal sources in one call. Args: query: Dispute topic (e.g., "부당해고", "개인정보 유출", "조세 부과 취소") display: Results per category (default 5) oc: Optional OC override type: Response format Returns: Precedents, admin appeals, constitutional decisions, and special tribunal decisions Examples: >>> chain_dispute_prep(query="부당해고") >>> chain_dispute_prep(query="개인정보 유출 과징금")
Other tools also called chain_dispute_prep?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"oc": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Oc",
"default": null
},
"type": {
"type": "string",
"title": "Type",
"default": "JSON"
},
"query": {
"type": "string",
"title": "Query"
},
"display": {
"type": "integer",
"title": "Display",
"default": 5
}
}
}