{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BatchStats",
"title": "BatchStats",
"description": "The summary of a nodes batch queue congestion status.",
"properties": {
"queueLength": {
"type": "number",
"format": "int",
"description": "How many objects are currently in the batch queue."
},
"ratePerSecond": {
"type": "number",
"format": "int",
"description": "How many objects are approximately processed from the batch queue per second."
}
}
}