Salesforce glossary

Plain-language definitions for the way Salesforce is built.

Objects & fields

Schema

The overall structure of a Salesforce org: its objects, the fields on them, the relationships between them, and the rules and automation that govern them. Understanding the schema is the foundation for changing an org safely.

Standard field

A field that ships with Salesforce out of the box (for example, Account Name or Opportunity Amount). Standard fields exist on standard objects and cannot be deleted, though many can be configured.

Custom field

A field added to an object to capture data Salesforce doesn’t track by default. Custom field API names end in __c. Orgs accumulate hundreds over time, which is why a current data dictionary matters.

Formula field

A read-only custom field whose value is calculated from other fields using a formula, recomputed whenever the record is viewed. It stores no data of its own but can depend on many other fields.

Roll-up summary field

A field on a parent record that aggregates values (count, sum, min, max) from related child records across a master-detail relationship.

Picklist (value set)

A field that constrains input to a defined list of values. Values can be local to one picklist or shared through a global value set reused across multiple fields.

Record type

A way to offer different business processes, picklist values, and page layouts to different users for the same object — for example, distinct sales and support processes on Case.

Page layout

The arrangement of fields, related lists, and buttons on a record. Page layouts control what users see and edit, and are assigned by profile and record type.

Lookup relationship

A loosely coupled link between two objects. The child can exist without the parent, and deleting the parent does not delete the child — unlike a master-detail relationship.

Master-detail relationship

A tightly coupled link where the child (detail) depends on the parent (master): the child inherits sharing, and deleting the parent deletes the children. Required for roll-up summary fields.

Automation

Security & access

Platform & data

SchemaForce concepts