# Multiple fields that are valid. Each item on the array is a valid field

  # type: Describes the field type. Possible options are documented here:
  # https://docs.google.com/spreadsheets/d/19rrs2h1sQV4R87j3Q6eGup11KQE1d5N89-1cFlSz4v0/edit?userstoinvite=cjarrin@devsu.com&ts=5d4464ff&actionButton=1#gid=1274754179
  # string, required
- type: text

  # label: Should be a string
  # string, required
  label: First Name

  # required: Determines if this field is required or not. Default false.
  # boolean, optional
  required: true

  # description: Displayed to the user as additional information for helping them to understand the purpose of the field
  # string, optional
  description: It is the first name of the candidate
  readOnly: false

- type: text
  label: Middle Name
  readOnly: false

- type: text
  label: Last Name
  required: true
  readOnly: false

- type: email
  label: Short Description
  required: true
  readOnly: false
  defaultValue: 'example@dominio.com'

- type: money
  label: Salary
  required: false
  readOnly: false

- type: select
  label: Document Type
  required: false
  readOnly: false
  options:

    # each option is a key:value pair
    # both the key and the value can be anything
    passport: Passport
    driversLicense: Driver's License
    other: Other

- type: rating
  label: Rating
  required: false
  readOnly: false

- type: address
  label: Shipping address
  required: true
  readOnly: false
  defaultValue:
    country: Ecuador

- type: group
  label: Example group
  required: true
  readOnly: false

- type: color
  label: Color of the page
  required: false
  readOnly: false
  defaultValue: '#000000'

- type: boolean
  label: Married
  required: false
  readOnly: false

- type: icon
  label: Icon of the page
  required: true
  readOnly: false

- type: number
  label: Value of PI
  required: false
  readOnly: false

- type: table
  label: Table example
  required: false
  readOnly: false
  table: Recruiters

- type: yesNo
  label: is allergic?
  required: false
  readOnly: false
