Korean Law Search
lsDelegated_service
Retrieve delegated laws/rules/ordinances (위임 법령 조회). This tool retrieves information about laws, administrative rules, and local ordinances that are delegated by a parent law. Shows the delegation hierarchy and which specific articles delegate authority. ⚠️ Note: This API does NOT support HTML format (only XML/JSON). Args: id: Law ID (required if mst not provided) mst: Law master number (required if id not provided) oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default) or "XML" (HTML not available for this endpoint) ctx: MCP context (injected automatically) Returns: Delegation hierarchy with delegated laws/rules/ordinances or error Examples: Retrieve delegations for 초·중등교육법: >>> lsDelegated_service(id="000900", type="XML")
Other tools also called lsDelegated_service?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Id",
"default": null
},
"oc": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Oc",
"default": null
},
"mst": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Mst",
"default": null
},
"type": {
"type": "string",
"title": "Type",
"default": "JSON"
}
}
}