{ "$schema": "http://json-schema.org/draft-07/schema#", "description": "Read a bounded chunk from an open file at an absolute byte offset.", "properties": { "handleId": { "type": "string" }, "maxBytes": { "description": "Requested upper bound. Values above `maxChunkBytes` are capped.", "format": "uint32", "minimum": 0.0, "type": [ "integer", "null" ] }, "offset": { "format": "uint64", "minimum": 0.0, "type": "integer" } }, "required": [ "handleId", "offset" ], "title": "FsReadFileReadParams", "type": "object" }