21 lines
481 B
JSON
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#"
|
|
}
|