Endpoints

Evidence Audits

Reopen stored assessments and decision receipts by content identity. Integrity is not semantic quality.

GET/v1/runtimes/:runtimeId/assessment-auditsReopen stored evidence assessments and re-verify hashes and citation closure.

studio.local-runtime-assessment-audits.v1

Response Envelope

response
commandIdstring

Accepted command identity.

runtimeIdstring

Runtime identity for this journal.

journalHeadnumber

Highest journal sequence written.

auditsarray

Reopened assessment audits; empty when none are stored.

Request
curl http://127.0.0.1:4312/v1/runtimes/$RUNTIME_ID/assessment-audits \
  -H "Authorization: Bearer $TOKEN"
200Response
{
    "schema": "studio.local-runtime-assessment-audits.v1",
    "commandId": "runtime-start:87a88ad697c53b8134783135c64c45c8c362bf9f682e121a720eb7867b2fcd2e",
    "runtimeId": "runtime:da4ff907-4240-42c7-8f14-deb6e2ce236a",
    "journalHead": 67,
    "audits": []
}
GET/v1/runtimes/:runtimeId/decision-receiptsRe-derive stored deterministic decisions from their audited inputs.

studio.local-runtime-decision-receipts.v1

Response Envelope

response
commandIdstring

Accepted command identity.

runtimeIdstring

Runtime identity for this journal.

journalHeadnumber

Highest journal sequence written.

decisionsarray

Re-derived decision receipts; empty when none are stored.

Request
curl http://127.0.0.1:4312/v1/runtimes/$RUNTIME_ID/decision-receipts \
  -H "Authorization: Bearer $TOKEN"
200Response
{
    "schema": "studio.local-runtime-decision-receipts.v1",
    "commandId": "runtime-start:87a88ad697c53b8134783135c64c45c8c362bf9f682e121a720eb7867b2fcd2e",
    "runtimeId": "runtime:da4ff907-4240-42c7-8f14-deb6e2ce236a",
    "journalHead": 67,
    "decisions": []
}