Request to verify an AgentIdentity (static check). For cryptographic verification, use the challenge-response flow instead.
| 477 | |
| 478 | |
| 479 | class AgentIdentityVerify(BaseModel): |
| 480 | """ |
| 481 | Request to verify an AgentIdentity (static check). |
| 482 | For cryptographic verification, use the challenge-response flow instead. |
| 483 | """ |
| 484 | agent_id: str = Field(min_length=10, max_length=32) |
| 485 | |
| 486 | |
| 487 | class AgentIdentityVerifyResponse(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected