Skip to content
Objects in Lightfield

Fields and relationships

Learn how fields, relationships, and their value types work in the Lightfield API.

Fields and relationships are the core data model for CRM objects in Lightfield. Fields store data on an object (e.g. a name, email, or deal value), while relationships link objects together (e.g. an opportunity’s account or contacts).

When creating or updating objects via the API (or through the SDKs), you pass field values in the fields object. Each key in that object corresponds to a field on the object type.

Field and relationship keys use a $ prefix to distinguish system-defined entries from custom ones:

  • System fields and relationships: Prefixed with $, e.g. $name, $stage, $account.
  • Custom fields and relationships: No prefix, e.g. priority, partners.
{
"fields": {
"$name": { "valueType": "TEXT", "value": "Acme Corp" },
"$stage": { "valueType": "SINGLE_SELECT", "value": "opt_..." },
"priority": { "valueType": "NUMBER", "value": 1 }
}
}

Use the definitions endpoint to discover all fields and relationships available on an object type:

GET /v1/{objectType}/definitions

For example:

Terminal window
curl https://api.lightfield.app/v1/opportunities/definitions \
-H "Authorization: Bearer $API_KEY" \
-H "Lightfield-Version: 2026-03-01"

The response includes the full schema for both fields and relationships:

{
"objectType": "opportunity",
"fieldDefinitions": {
"$name": {
"id": "ad_...",
"slug": "name",
"label": "Name",
"description": null,
"valueType": "TEXT",
"system": true,
"typeConfiguration": {}
},
"$stage": {
"id": "ad_...",
"slug": "stage",
"label": "Stage",
"description": "What stage is the opportunity in?",
"valueType": "SINGLE_SELECT",
"system": true,
"typeConfiguration": {
"options": [
{ "id": "opt_...", "label": "Prospecting", "description": null },
{ "id": "opt_...", "label": "Closed Won", "description": null }
]
}
}
},
"relationshipDefinitions": {
"$account": {
"id": null,
"slug": "account",
"label": "Account",
"description": null,
"system": true,
"cardinality": "HAS_ONE",
"objectType": "account"
}
}
}

This is especially useful for resolving select option IDs to their labels, and for discovering which keys will appear in record responses.

Object typePath
Accounts/v1/accounts/definitions
Contacts/v1/contacts/definitions
Opportunities/v1/opportunities/definitions
PropertyTypeDescription
idstring | nullUnique identifier (prefixed with ad_), or null for synthesized fields.
slugstringInternal slug for the field.
labelstringHuman-readable label.
descriptionstring | nullOptional description.
valueTypestringThe field’s value type. See field value types.
systembooleantrue for built-in fields, false for custom fields.
readOnlybooleanPresent and true for fields that are not writable via the API (e.g. AI-generated summaries). Absent on writable fields.
typeConfigurationobjectType-specific configuration. See type configuration.
PropertyTypeDescription
idstring | nullUnique identifier (prefixed with rd_), or null for synthesized relationships.
slugstringInternal slug for the relationship.
labelstringHuman-readable label.
descriptionstring | nullOptional description.
systembooleantrue for built-in relationships, false for custom relationships.
cardinalitystringHAS_ONE or HAS_MANY.
objectTypestringThe related object type (e.g. account, contact, user).

Every field has a valueType that determines the shape of its value:

TypeValue formatDescription
TEXTstringPlain text.
NUMBERnumberA number with up to 2 decimal places, within safe integer range.
CHECKBOXboolean | nullA true/false value.
CURRENCYnumber | nullA numeric amount. The currency code (e.g. USD) is set in the field’s type configuration.
DATETIMEstring | nullAn ISO 8601 datetime string with timezone offset (e.g. "2026-03-16T12:00:00+00:00"). Stored as UTC.
EMAILstring[]An array of email addresses (RFC 5322).
TELEPHONEstring[]An array of phone numbers. See telephone format below.
URLstring | string[] | nullA URL or array of URLs.
ADDRESSobjectA structured address object. See address format below.
FULL_NAMEobjectAn object with firstName and lastName properties.
SOCIAL_HANDLEstring | nullA social media handle or profile URL. See social handle format below.
SINGLE_SELECTstring | nullThe id of a select option (prefixed with opt_).
MULTI_SELECTstring[]An array of select option ids.
READONLY_MARKDOWNstringRead-only markdown content, typically AI-generated. Not writable via the API.

Address values are objects with the following properties, all optional:

PropertyTypeDescription
streetstringStreet address line 1.
street2stringStreet address line 2 (apartment, suite, etc.).
citystringCity name.
statestringState or region.
postalCodestringPostal or ZIP code.
countrystringISO 3166-1 alpha-2 country code (e.g. "US", "GB"). Must be exactly 2 characters.
latitudenumberLatitude coordinate.
longitudenumberLongitude coordinate.
{
"street": "123 Main St",
"city": "San Francisco",
"state": "CA",
"postalCode": "94105",
"country": "US"
}

Phone numbers are validated and normalized on input:

  • With + prefix: Validated as an international number in E.164 format (e.g. "+12025551234").
  • Without + prefix: Validated as a US number first, then falls back to accepting 7–15 digit local numbers.
  • Extensions: Supported via ;ext= notation (e.g. "+12025551234;ext=100"). Various input formats like x100, ext:100, and #100 are automatically normalized to the ;ext= format.
["+12025551234", "+442071234567;ext=100"]

SOCIAL_HANDLE fields store a social media profile URL. Each social handle field has a handleService in its type configuration that specifies the platform: TWITTER, LINKEDIN, FACEBOOK, or INSTAGRAM.

Values must be a valid profile URL for the configured platform:

PlatformAccepted URL formats
TWITTERhttps://twitter.com/{username}, https://x.com/{username}
LINKEDINhttps://linkedin.com/in/{slug}, https://linkedin.com/company/{slug}
FACEBOOKhttps://facebook.com/{username}, https://fb.com/{username}
INSTAGRAMhttps://www.instagram.com/{username}

Regional subdomains (e.g. https://uk.linkedin.com/in/...) and query parameters are accepted.

"https://x.com/lightfield"
"https://www.linkedin.com/in/jane-doe"
"https://www.instagram.com/lightfield"

Pass null to clear a social handle field.

SINGLE_SELECT and MULTI_SELECT fields reference predefined options by their id. Use the definitions endpoint to discover the available options for a field.

Each option has the following shape:

PropertyTypeDescription
idstringUnique identifier, prefixed with opt_.
labelstringDisplay label.
descriptionstring | nullOptional description.

When setting a SINGLE_SELECT value, pass the option’s id as a string. For MULTI_SELECT, pass an array of option ids.

{
"fields": {
"$stage": "opt_abc123",
"tags": ["opt_def456", "opt_ghi789"]
}
}

Some field types include additional configuration via typeConfiguration on the field definition. You can read these from the definitions endpoint.

TypeConfigurationDescription
CURRENCYcurrencyISO 4217 currency code (e.g. "USD").
EMAILunique, multipleValuesWhether values must be unique across objects, and whether multiple emails are allowed.
TELEPHONEunique, multipleValuesSame as email — uniqueness and multiple value support.
URLunique, multipleValuesSame as email — uniqueness and multiple value support.
SOCIAL_HANDLEhandleServicePlatform hint: TWITTER, LINKEDIN, FACEBOOK, or INSTAGRAM.
SINGLE_SELECToptionsThe list of available select options.
MULTI_SELECToptionsThe list of available select options.

Types not listed above (such as TEXT, NUMBER, DATETIME, CHECKBOX, ADDRESS, FULL_NAME, and READONLY_MARKDOWN) return an empty typeConfiguration: {}.

Fields and relationships can be either system or custom:

  • System entries are built-in, prefixed with $, and cannot be deleted. They are present on every object of their entity type (e.g. $name on accounts, $account on opportunities).
  • Custom entries are user-defined and can be created, updated, and removed through the API or the Lightfield UI.

Both system and custom entries follow the same value type rules described above.

Lightfield uses prefixed IDs to distinguish between entity types:

EntityPrefixExample
Accountacc_acc_abc123
Contactcon_con_abc123
Opportunityopp_opp_abc123
Membermem_mem_abc123
Field definitionad_ad_abc123
Relationship definitionrd_rd_abc123
Select optionopt_opt_abc123
Attribute valueav_av_abc123
Relationship valuerv_rv_abc123