{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "tiwater.text-mcp-input/text_read_lines/v1",
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "minLength": 1,
      "x-tiwater-file-role": "read"
    },
    "offset": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991,
      "description": "Zero-based line offset in the exact current source revision."
    },
    "returnContent": {
      "type": "boolean",
      "description": "Return this selected line page directly when it fits the response limit. May be combined with output."
    },
    "output": {
      "type": "string",
      "minLength": 1,
      "description": "Optional immutable JSON artifact path for this selected line page. May be combined with returnContent.",
      "x-tiwater-file-role": "write",
      "x-tiwater-file-effect": false
    }
  },
  "required": ["input", "offset", "returnContent"],
  "additionalProperties": false
}
