{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ServiceStatistics", "type": "object", "properties": { "OkCount": { "type": "integer", "format": "int64" }, "ErrorStatistics": { "type": "object", "properties": { "ThrottleCount": { "type": "integer", "format": "int64" }, "OtherCount": { "type": "integer", "format": "int64" }, "TotalCount": { "type": "integer", "format": "int64" } } }, "FaultStatistics": { "type": "object", "properties": { "OtherCount": { "type": "integer", "format": "int64" }, "TotalCount": { "type": "integer", "format": "int64" } } }, "TotalCount": { "type": "integer", "format": "int64" }, "TotalResponseTime": { "type": "number" } } }