Files
codex/codex-rs/app-server-protocol/schema/json/v2/HistoryEntryReadParams.json
2026-02-23 08:31:57 -08:00

21 lines
371 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"logId": {
"format": "uint64",
"minimum": 0.0,
"type": "integer"
},
"offset": {
"format": "uint",
"minimum": 0.0,
"type": "integer"
}
},
"required": [
"logId",
"offset"
],
"title": "HistoryEntryReadParams",
"type": "object"
}