get_commentary_by_id
Retrieve detailed legal commentary content by specifying its unique ID using the Model Context Protocol for Swiss legal resources.
Instructions
Retrieves a specific commentary by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the commentary to retrieve. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the commentary to retrieve.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}