Issue with BambooHR Source

You can change the connector itself and remove the fields you don’t want to use and after build a dev version; in the future when the select column is available you can return to official release.

You need to change files inside the schemas folder.

{
  "type": ["null", "object"],
  "required": [],
  "properties": {
    "id": {
      "type": ["null", "string"]
    },
    "displayName": {
      "type": ["null", "string"]
    },
    "firstName": {
      "type": ["null", "string"]
    },
    "lastName": {
      "type": ["null", "string"]
    },
    "preferredName": {
      "type": ["null", "string"]
    }
...

To remove lastName property:

{
  "type": ["null", "object"],
  "required": [],
  "properties": {
    "id": {
      "type": ["null", "string"]
    },
    "displayName": {
      "type": ["null", "string"]
    },
    "firstName": {
      "type": ["null", "string"]
    },
    "preferredName": {
      "type": ["null", "string"]
    }

After you need to build the connector locally with changes, and if you have Airbyte installed in a server like EC2 you probably need to publish to DockerHub see instructions here.

Hope this helps you!