FederationStatsResponse
Response for federation statistics
Properties
| Property | Type | Required | Description |
|---|---|---|---|
by_status |
object | Yes | |
by_type |
object | Yes | |
total_active |
integer | Yes |
View JSON Schema
{
"type": "object",
"description": "Response for federation statistics",
"required": [
"total_active",
"by_type",
"by_status"
],
"properties": {
"by_status": {
"type": "object",
"additionalProperties": {
"type": "integer",
"format": "int64"
},
"propertyNames": {
"type": "string"
}
},
"by_type": {
"type": "object",
"additionalProperties": {
"type": "integer",
"format": "int64"
},
"propertyNames": {
"type": "string"
}
},
"total_active": {
"type": "integer",
"format": "int64"
}
}
}