Information about global partition state.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-schema/rest-api-global-partition-state-response-schema.json", "title": "GlobalPartitionStateResponse", "description": "Information about global partition state.", "type": "object", "properties": { "partitionId": { "type": "integer", "format": "int32" }, "zoneName": { "type": "string" }, "tableId": { "type": "integer", "format": "int32" }, "schemaName": { "type": "string" }, "tableName": { "type": "string" }, "state": { "type": "string" } }, "required": [ "partitionId", "schemaName", "state", "tableId", "tableName", "zoneName" ] }