mirror of
https://github.com/openai/codex.git
synced 2026-04-25 15:15:15 +00:00
54 lines
955 B
JSON
54 lines
955 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"HistoryEntry": {
|
|
"properties": {
|
|
"conversationId": {
|
|
"type": "string"
|
|
},
|
|
"text": {
|
|
"type": "string"
|
|
},
|
|
"ts": {
|
|
"format": "uint64",
|
|
"minimum": 0.0,
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"required": [
|
|
"conversationId",
|
|
"text",
|
|
"ts"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"entry": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/HistoryEntry"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"logId": {
|
|
"format": "uint64",
|
|
"minimum": 0.0,
|
|
"type": "integer"
|
|
},
|
|
"offset": {
|
|
"format": "uint",
|
|
"minimum": 0.0,
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"required": [
|
|
"logId",
|
|
"offset"
|
|
],
|
|
"title": "HistoryEntryReadResponse",
|
|
"type": "object"
|
|
} |