Files
proxmox/scripts/validation/validate-dbis-institutional-json.sh
defiQUG 7ac74f432b chore: sync docs, config schemas, scripts, and meta task alignment
- Institutional / JVMTM / reserve-provenance / GRU transport + standards JSON
- Validation and verify scripts (Blockscout labels, x402, GRU preflight, P1 local path)
- Wormhole wiring in AGENTS, MCP_SETUP, MASTER_INDEX, 04-configuration README
- Meta docs, integration gaps, live verification log, architecture updates
- CI validate-config workflow updates

Operator/LAN items, submodule working trees, and public token-aggregation edge
routes remain follow-up (see TODOS_CONSOLIDATED P1).

Made-with: Cursor
2026-03-31 22:31:39 -07:00

11 lines
353 B
Bash
Executable File

#!/usr/bin/env bash
# Validate JSON syntax for DBIS institutional examples (no ajv required).
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
EX="$ROOT/config/dbis-institutional/examples"
for f in "$EX"/*.json; do
python3 -m json.tool "$f" >/dev/null
echo "OK $f"
done
echo "All institutional example JSON files parse."