You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think all keywords have customized errorMessage support. For some keywords, the error message is standard and it does support translation into Chinese. Thanks.
oneOf:errorMessage is valid,but type:["string",null] errorMessage is invalid
{
"type": "object",
"properties": {
"keyword": {
"oneOf": [
{ "type": "string" },
{ "type": "null" }
],
"errorMessage": {
"oneOf": "keyword必须为字符串"
},
"title": "关键字"
},
"keyword1": {
"type": ["string","null"],
"errorMessage": {
"type": "关键字1必须为字符串"
},
"title": "关键字"
}
}}
The text was updated successfully, but these errors were encountered: