{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-async-replication-status-schema.json",
"title": "AsyncReplicationStatus",
"description": "The status of the async replication.",
"type": "object",
"properties": {
"objectsPropagated": {
"type": "number",
"format": "uint64",
"description": "The number of objects propagated in the most recent iteration."
},
"startDiffTimeUnixMillis": {
"type": "number",
"format": "int64",
"description": "The start time of the most recent iteration."
},
"targetNode": {
"type": "string",
"description": "The target node of the replication, if set, otherwise empty."
}
}
}