到目前为止,我在我的 jsonschema 中使用它
"ApplicationContent": {
"type": "string",
"pattern": ".+"
},
我的 NodeJS 代码有
applicationContent: string | Record<string, unknown>;
如何编写 jsonschema 验证来验证 applicationContent 变量。
下面的模式验证“字符串”和“记录
"ApplicationContent": {
"type": ["string", "object"],
"additionalProperties": { "type": "string" },
"pattern": ".+"
},