Learn the essential rules and best practices for using custom fields effectively in your AI prompts
✅ Correct | ❌ Wrong | What Happens |
---|---|---|
{FirstName} | {First Name} | ❌ System error |
{AccountNumber} | {Account Number} | ❌ Data not found |
{PaymentAmount} | {Payment Amount} | ❌ Field fails |
{AccountNumber}
instead of {Acc}
{PaymentAmount}
instead of {PayAmt}
{CustomerName}
instead of {CustName}
{AccNum}
(unclear){FirstName}
and {last_name}
(inconsistent){CustomerAccountPaymentAmountDueDate}
(confusing){Account#}
or {Amount$}
(causes errors)Field Name | Purpose | Example |
---|---|---|
{FirstName} | User’s first name | ”Hello John” |
{LastName} | User’s last name | ”Mr. Smith” |
{FullName} | Complete name | ”John Smith” |
{Title} | Professional title | ”Dr. Smith” |
{Company} | Company name | ”ABC Corporation” |
Field Name | Purpose | Example |
---|---|---|
{PhoneNumber} | Contact phone | ”555-123-4567” |
{EmailAddress} | Email address | ”john@email.com” |
{Address} | Physical address | ”123 Main St” |
{City} | City name | ”New York” |
{State} | State/province | ”NY” |
{ZipCode} | Postal code | ”10001” |
Field Name | Purpose | Example |
---|---|---|
{AccountNumber} | Account identifier | ”ACC12345” |
{AccountType} | Type of account | ”Savings” |
{Balance} | Current balance | ”$1,250.00” |
{AmountDue} | Outstanding amount | ”$500.00” |
{DueDate} | Payment deadline | ”March 30, 2024” |
{LastPayment} | Last payment amount | ”$200.00” |
{PaymentDate} | Last payment date | ”February 15, 2024” |
Field Name | Purpose | Example |
---|---|---|
{today} | Current date | ”March 15, 2024” |
{time_zone} | User’s time zone | ”+05:30” or “Asia/Kolkata” |
{AppointmentDate} | Scheduled date | ”March 20, 2024” |
{AppointmentTime} | Scheduled time | ”3:00 PM” |
Field Name | Purpose | Example |
---|---|---|
{ProductName} | Product name | ”Premium Plan” |
{ServiceType} | Service category | ”Technical Support” |
{OrderNumber} | Order identifier | ”ORD789” |
{OrderDate} | Order placement date | ”March 10, 2024” |
{ProductPrice} | Product cost | ”$99.99” |
Test Case | What to Check | Expected Result |
---|---|---|
Basic fields | {FirstName} , {LastName} | Names appear correctly |
Financial fields | {AmountDue} , {DueDate} | Numbers and dates format properly |
Time fields | {today} ,{time_zone} | Current date displays |
Empty fields | Missing data | Graceful handling or fallback text |