Simple Validation

I’d like to simply require that some fields not be empty. Can someone set me straight with a quick blueprint example?

You can define that a field is required by setting required to “true”.

fields:
  title:
    label: title
    type: text
  name:
    label: Name
    type: text
    required: true
1 Like

Perfect. Thanks for your time and know-how.