# Synthetic Salesforce demo data. No existing org data is read.
# 12 Accounts + 24 Contacts + 12 Opportunities = 48 records.
- object: Account
  count: 12
  fields:
    Name: Orgbit Demo Account ${{id}}
    Description: Synthetic Orgbit tutorial data
  friends:
    - object: Contact
      count: 2
      fields:
        FirstName:
          fake: FirstName
        LastName:
          fake: LastName
        Email: contact-${{id}}@example.com
        AccountId:
          reference: Account
    - object: Opportunity
      count: 1
      fields:
        Name: ${{Account.Name}} - Starter deal
        StageName: Prospecting
        CloseDate: 2026-12-15
        Amount: 12500
        AccountId:
          reference: Account
