Files
nana-story/contracts/schema/lapp-connection-test-result.schema.json
T
Codex 23672e857b
verify / verify (push) Has been cancelled
feat(app): harden cancellable LAPP turns
2026-07-28 08:44:53 -04:00

32 lines
498 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LappConnectionTestResult",
"type": "object",
"properties": {
"diagnosticCode": {
"type": [
"string",
"null"
]
},
"message": {
"type": "string"
},
"modelId": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"providerId": {
"type": "string"
}
},
"required": [
"ok",
"providerId",
"modelId",
"message"
]
}