Files
2026-07-13 12:33:44 +08:00

21 lines
481 B
JSON

{
"$ref": "#/definitions/ParserProgress",
"definitions": {
"ParserProgress": {
"type": "object",
"properties": {
"percent": {
"description": "The percent progress of the parsing process, a number between 0 and 100",
"type": "number"
},
"message": {
"description": "The current state of the parsing process",
"type": "string"
}
},
"required": ["message", "percent"]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}