Korean Law Search
simplify_article
Get a law article with legal terms replaced by everyday Korean (쉬운 법률 읽기). Fetches a law article and annotates legal jargon with plain Korean equivalents using the official 법제처 legal terminology database. Args: law_name: Law name (e.g., "민법", "근로기준법") article: Article number (e.g., 750 for 제750조) article_branch: Branch number (e.g., 2 for 제37조의2, default 0) oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: Original text, simplified text with inline annotations, and term glossary Examples: >>> simplify_article(law_name="민법", article=750) >>> simplify_article(law_name="건축법", article=37, article_branch=2)
Other tools also called simplify_article?
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"
},
"article": {
"type": "integer",
"title": "Article"
},
"law_name": {
"type": "string",
"title": "Law Name"
},
"article_branch": {
"type": "integer",
"title": "Article Branch",
"default": 0
}
}
}