我正在编写 JSON 模式验证。我有一个 ID 字段,其值是从 SQL Server 中的表导入的。这些值很大并且经常更新,那么有没有办法在服务器中动态连接到这个表并验证 JSON?下面是我的架构的示例代码:
{
"type": "object",
"required": ["employees"],
"properties": {
"employees": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "integer", enum = [134,2123,3213,444,5525,6234,7532,825,9342]}
}
}
}
}
代替“枚举”,我想连接到一个表,以便在更新表时更新 ID 值。