Is there any way I can update a schema to mark a field as required?

Alternatively, you could update the _SCHEMA collection manually. I’m not sure if this will have complications.

Add this to “_metadata”:

 "fields_options" : {
  "field" : {
    "required" : true,
    "defaultValue" : "hello world"
  }
}
1 Like