- 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
32 lines
1.1 KiB
JSON
32 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://d-bis.org/schemas/trust.json",
|
|
"title": "DBIS trust.json",
|
|
"type": "object",
|
|
"required": ["version", "issuedAt", "endpoints"],
|
|
"properties": {
|
|
"version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" },
|
|
"issuedAt": { "type": "string", "format": "date-time" },
|
|
"organization": { "type": "string" },
|
|
"endpoints": {
|
|
"type": "object",
|
|
"additionalProperties": { "type": "string", "format": "uri" },
|
|
"properties": {
|
|
"didRegistry": { "type": "string", "format": "uri" },
|
|
"dataApi": { "type": "string", "format": "uri" },
|
|
"explorer": { "type": "string", "format": "uri" },
|
|
"status": { "type": "string", "format": "uri" },
|
|
"developers": { "type": "string", "format": "uri" },
|
|
"gitea": { "type": "string", "format": "uri" }
|
|
}
|
|
},
|
|
"jwksUri": { "type": "string", "format": "uri" },
|
|
"caHints": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"notes": { "type": "string" }
|
|
},
|
|
"additionalProperties": false
|
|
}
|