Configuration specifying a file path for reader operations.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-nutch/refs/heads/main/json-schema/apache-nutch-reader-config-schema.json", "title": "ReaderConfig", "description": "Configuration specifying a file path for reader operations.", "type": "object", "properties": { "path": { "type": "string", "description": "The path to the sequence file, link data, or node data to read." } }, "required": [ "path" ], "example": { "path": "crawl-01/crawldb/current/part-00000/data" } }