# rows: Defines the rows that should be rendered
# array, required
rows:
  # _title: Defines a title to be displayed in the form
  - _title: Personal Information

  # _statement: Defines a statement (text) to be displayed in the form
  - _statement: Please complete all the information below

  # fieldName: It references a single field that should be displayed in a row
  - email

  # fieldNames: It references multiple fields that should be displayed in the same line.
  # Each item of the array should be a string
  - [firstName, middleName, lastName]

  # fieldOverrides: It references one field that should be displayed, overriding its properties
  # - The item key is the id of the field
  # - The item properties will override the field properties.
  - active:
      label: Is the candidate still active?
