likwid/backend/.sqlx/query-14514b4a260abf4b93429a3d841bea19693db589ad668279d7361f499fe7e408.json
Marco Allegretti 910a6465f2 Initial commit: Likwid governance platform
- 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
2026-01-27 17:21:58 +01:00

52 lines
1.4 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "SELECT \n community_id,\n overall_health_score::float8 AS overall_health_score,\n participation_score::float8 AS participation_score,\n efficiency_score::float8 AS efficiency_score,\n delegation_health_score::float8 AS delegation_health_score,\n power_concentration_risk\n FROM governance_health_indicators\n WHERE community_id = $1\n ORDER BY calculated_at DESC\n LIMIT 1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "community_id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "overall_health_score",
"type_info": "Float8"
},
{
"ordinal": 2,
"name": "participation_score",
"type_info": "Float8"
},
{
"ordinal": 3,
"name": "efficiency_score",
"type_info": "Float8"
},
{
"ordinal": 4,
"name": "delegation_health_score",
"type_info": "Float8"
},
{
"ordinal": 5,
"name": "power_concentration_risk",
"type_info": "Varchar"
}
],
"parameters": {
"Left": [
"Uuid"
]
},
"nullable": [
false,
null,
null,
null,
null,
true
]
},
"hash": "14514b4a260abf4b93429a3d841bea19693db589ad668279d7361f499fe7e408"
}