|
| 1 | +--- |
| 2 | +description: >- |
| 3 | + An introduction to data modeling and modeling terminology common to relational |
| 4 | + and graph databases. |
| 5 | +--- |
| 6 | + |
| 7 | +# Data Modeling Basics |
| 8 | + |
| 9 | +## Key topics |
| 10 | + |
| 11 | +[The importance of data modeling](broken-reference) |
| 12 | + |
| 13 | +[Modeling an organization](data-modeling-basics.md#modeling-an-organization) |
| 14 | + |
| 15 | +## The importance of data modeling |
| 16 | + |
| 17 | +The correct organization of data and the correct definition of the underlying database model or schema are critical to a business. TerminusDB organizes data in an object structure to facilitate modeling a business and the real world generally. |
| 18 | + |
| 19 | +## Modeling an organization |
| 20 | + |
| 21 | +Using a small organization as an example, use the step below to model and define a schema for the `organization` and its **elements** - `team`, `project`, `task`, and `employee`. |
| 22 | + |
| 23 | +**Data modeling steps** |
| 24 | + |
| 25 | +[Step 1. Identify the elements of the organization](data-modeling-basics.md#step-1.-identify-the-elements-of-the-organization) |
| 26 | + |
| 27 | +[Step 2. Identify the properties of each element](data-modeling-basics.md#step-2.-identify-the-properties-of-each-element) |
| 28 | + |
| 29 | +[Step 3. Identify the relationships between elements](data-modeling-basics.md#step-3.-identify-the-relationships-between-elements) |
| 30 | + |
| 31 | +### Element relationship modeling |
| 32 | + |
| 33 | +For relational and graph databases, an entity or element relationship model is a good way of implementing these steps. This helps to identify the components of the schema - its **elements**, **properties**, and **relationships**. |
| 34 | + |
| 35 | +#### Diagram: An element relationship model |
| 36 | + |
| 37 | + |
| 38 | + |
| 39 | +### Step 1. Identify the elements of the organization |
| 40 | + |
| 41 | +{% hint style="info" %} |
| 42 | +**Elements** are similar to entities in relational database terminology. |
| 43 | +{% endhint %} |
| 44 | + |
| 45 | +#### Table: Elements of an organization |
| 46 | + |
| 47 | +| **Element** | **Description** | |
| 48 | +| -------------- | ------------------------------------ | |
| 49 | +| `organization` | The main organization. | |
| 50 | +| `team` | The teams within the `organization.` | |
| 51 | +| `employee` | The employee assigned to `task`. | |
| 52 | +| `project` | The projects that a `team` creates. | |
| 53 | +| `task` | The tasks of the `project`. | |
| 54 | + |
| 55 | +### Step 2. Identify the properties of each element |
| 56 | + |
| 57 | +{% hint style="info" %} |
| 58 | +**Properties** are similar to attributes in relational database terminology. A property is an item of data describing the element. |
| 59 | +{% endhint %} |
| 60 | + |
| 61 | +#### Table: The properties of elements |
| 62 | + |
| 63 | +| **Element** | **Properties** | |
| 64 | +| -------------- | -------------------------------------------------- | |
| 65 | +| `organization` | `name`, `desc`, `start-date` | |
| 66 | +| `team` | `name`, `desc`, `start-date` | |
| 67 | +| `employee` | `name`, `date-of-birth`, `start-date`, `role` | |
| 68 | +| `project` | `name`, `start-date`, `end-date`, `desc`, `status` | |
| 69 | +| `task` | `name`, `start-date`, `end-date`, `desc`, `status` | |
| 70 | + |
| 71 | +### Step 3. Identify the relationships between elements |
| 72 | + |
| 73 | +{% hint style="info" %} |
| 74 | +**Relationships** are the same in graph and relational database terminology. Relationships define the associations or interactions between elements. |
| 75 | +{% endhint %} |
| 76 | + |
| 77 | +#### Table: The relationship between elements |
| 78 | + |
| 79 | +| **Element** | **Element** | **Relationship (phrasal verb)** | **Relationship description** | |
| 80 | +| -------------- | ----------- | ------------------------------- | --------------------------------------- | |
| 81 | +| `organization` | `team` | `consists-of` | An `organization` `consists of` `team`s | |
| 82 | +| `team` | `project` | `collaborates-on` | A `team` `collaborates-on` `project`s | |
| 83 | +| `project` | `task` | `divided-into` | A `project` is `divided-into` `task`s | |
| 84 | +| `task` | `employee` | `assigned-to` | A `task` is `assigned-to` an `employee` | |
| 85 | + |
0 commit comments