Documentation

Business Functions

Generate company and business-related data

Business Functions

Generate realistic business and company data.


generate_company

Generate company names.

Category: Business Type: Generator Data Types: string, text

columns:
  - name: company_name
    function: generate_company

Output Sample:

Acme Corporation
Smith & Associates
Global Innovations LLC
TechStart Industries

generate_catch_phrase

Generate business catch phrases and slogans.

Category: Business Type: Generator Data Types: string, text

columns:
  - name: slogan
    function: generate_catch_phrase

Output Sample:

Innovative solutions for tomorrow
Quality you can trust
Leading the way forward

generate_ein

Generate Employer Identification Numbers (EIN).

Category: Business Type: Generator Data Types: string

US federal tax identification for businesses.

columns:
  - name: ein
    function: generate_ein

Output: 12-3456789


generate_job_title

Generate realistic job titles.

Category: Person Type: Generator Data Types: string, text

columns:
  - name: position
    function: generate_job_title

Output Sample:

Software Engineer
Marketing Manager
Chief Financial Officer
Sales Representative
Human Resources Director

Common Patterns

Company Profile

tables:
  - name: companies
    columns:
      - name: company_name
        function: generate_company
      - name: ein
        function: generate_ein
      - name: tagline
        function: generate_catch_phrase
      - name: address
        function: generate_address
      - name: city
        function: generate_city
      - name: phone
        function: generate_phone_number
      - name: website
        function: generate_url

Employee Record

tables:
  - name: employees
    columns:
      - name: first_name
        function: generate_first_name
      - name: last_name
        function: generate_last_name
      - name: email
        function: generate_email
      - name: job_title
        function: generate_job_title
      - name: department
        function: select_from_list
        parameters:
          values: ["Engineering", "Marketing", "Sales", "HR", "Finance"]