我们有一个包含字段的 json 模式,我们希望通过模式控制其值(而不是让用户指定值)。
我们可以设置一个默认值——但这只是被用户解析的 formData 覆盖。
有没有办法将字段值“锁定”为模式中提供的默认值,确保 formData 使用模式指定的值进行更新?
{
"meta": {
"title": "SCHEMA REVISION",
"type": "object",
"properties": {
"rev": {
"title": "We want to lock the below default value via the schema",
"type": "string",
"default": "10.00"
}
}
}
}