29 lines
652 B
JSON
29 lines
652 B
JSON
{
|
|
"hli_id": "HLI-AUTH-003",
|
|
"version": "v0.1",
|
|
"route": "/hli/auth/verify",
|
|
"method": "POST",
|
|
"type": "REQUEST",
|
|
"input": {
|
|
"type": "object",
|
|
"required": ["token"],
|
|
"properties": {
|
|
"token": { "type": "string" }
|
|
}
|
|
},
|
|
"output": {
|
|
"type": "object",
|
|
"required": ["valid", "user_id"],
|
|
"properties": {
|
|
"valid": { "type": "boolean" },
|
|
"user_id": { "type": "string" },
|
|
"persona_id": { "type": "string" },
|
|
"expires_at": { "type": "string", "format": "date-time" }
|
|
}
|
|
},
|
|
"dependencies": ["HLI-AUTH-001"],
|
|
"changelog": [
|
|
{ "date": "2026-03-05", "note": "初始创建" }
|
|
]
|
|
}
|