# Business Name (BusinessNameGenerator)

The [Business Name](https://docs.tonic.ai/app/generation/generators/generator-reference/business-name) generator generates a random company name-like string.

## Link object structure <a href="#generator-api-business-name-link-object" id="generator-api-business-name-link-object"></a>

The Business Name generator does not support linking. It can be self-consistent or consistent with another column. You cannot configure differential privacy.

The metadata object is populated from the [`BaseMetadata`](https://app.tonic.ai/apidocs/index.html#/models/BaseMetadata) object.

There is no generator-specific configuration.

```json
{
  "schema": "string",
  "table": "string",
  "column": "string",
  "path": "string",  //JSON fields only
  "dataType": "string",  //MongoDB, Amazon DynamoDB, and JSON fields only
  "metadata": {
    "presetId": "string",
    "generatorId": "BusinessNameGenerator",
    "isConsistent": boolean,
    "consistencyColumn": "string",
    "encryptionProcessor": "x-on", //To use configured Structural data encryption
    "customValueProcessor": "string"  //If custom value processor applied
  }
}
```

## Example replacement <a href="#generator-api-business-name-example-replacement" id="generator-api-business-name-example-replacement"></a>

In the following replacement, the Business Name generator is applied to a `company` column, and is consistent with a `name` column.

```json
{
  "name": "company",
  "schema": "public",
  "table": "users",
  "links": [
    {
      "schema": "public",
      "table": "users",
      "column": "company",
      "metadata": {
        "presetId": "BusinessNameGenerator",
        "generatorId": "BusinessNameGenerator",
        "isConsistent": true,
        "consistencyColumn": "name"
      }
    }
  ]
}
```
