A fundamental guide for architects on the crucial difference between Object Types (the design blueprint) and Objects (the live data instance).
Object Type
is the design or blueprint.Object
is the live data instance created from that blueprint.Object Type
Workflow
.Data Fields
.📋 Function
).Object
⏹️ Space
).Feature | Object Type (The Blueprint) | Object (The Instance) |
---|---|---|
What it is | A reusable template or a class definition. | A unique data record. |
Where it lives | Designed and managed inside a 📋 Function . | Created and managed inside a ⏹️ Space . |
What it contains | A Workflow , Data Fields , and Screen Layouts . | Specific values for those fields (e.g., “John Doe”, “$5000”). |
Example | The “Sales Deal” blueprint. | The “Q3 Acme Corp Deal” with a value of $50,000. |
Quantity | One per business concept in a Function . | Potentially thousands created from one Object Type . |
Analogy | The Cookie Cutter. | The actual Cookie. |
Object Type
blueprint, you ensure every Object
created from it is consistent. This is essential for reliable reporting, filtering, and automation.Object Type
can be used to generate millions of Objects
across hundreds of Spaces
, all without any additional design work.Object Type
in its Function
. This single change can then be propagated to all live Objects
, saving countless hours of manual updates.