Request to append an entry to an AuditChain.
| 645 | |
| 646 | |
| 647 | class AuditChainAppendRequest(BaseModel): |
| 648 | """Request to append an entry to an AuditChain.""" |
| 649 | layer: AuditLayer |
| 650 | event: str |
| 651 | agent_id: str |
| 652 | mission_id: str |
| 653 | data: dict[str, Any] | None = None |
| 654 | token_id: str | None = None |
| 655 | |
| 656 | |
| 657 | class AuditChainVerifyResponse(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected