32 lines
498 B
JSON
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"
|
|
]
|
|
}
|