mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-10 05:23:09 +00:00
- Backend: Rust/Axum with PostgreSQL, plugin architecture - Frontend: Astro with polished UI - Voting methods: Approval, Ranked Choice, Schulze, STAR, Quadratic - Features: Liquid delegation, transparent moderation, structured deliberation - Documentation: User and admin guides in /docs - Deployment: Docker/Podman compose files for production and demo - Demo: Seeded data with 3 communities, 13 users, 7 proposals License: AGPLv3
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "SELECT \n total_conflicts::bigint,\n resolved_conflicts::bigint,\n avg_resolution_days::float8,\n mediation_success_rate::float8,\n active_conflicts::bigint\n FROM get_conflict_statistics($1)",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "total_conflicts",
|
|
"type_info": "Int8"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "resolved_conflicts",
|
|
"type_info": "Int8"
|
|
},
|
|
{
|
|
"ordinal": 2,
|
|
"name": "avg_resolution_days",
|
|
"type_info": "Float8"
|
|
},
|
|
{
|
|
"ordinal": 3,
|
|
"name": "mediation_success_rate",
|
|
"type_info": "Float8"
|
|
},
|
|
{
|
|
"ordinal": 4,
|
|
"name": "active_conflicts",
|
|
"type_info": "Int8"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": [
|
|
null,
|
|
null,
|
|
null,
|
|
null,
|
|
null
|
|
]
|
|
},
|
|
"hash": "87f52f0262716fe497a6e8b42722cc11f88dacaa0bca746ebd5b474a734d9bb3"
|
|
}
|