"Docs" values
1 row is stored for this page
| Field | Field type | Value |
|---|
| Title | String | Notes |
| DocType | String | reference |
| Domain | String | clinical |
| Summary | Text | |
| SidebarOrder | Integer | 9 |
| IntroducedIn | String | 3.0 |
| DeprecatedIn | String | |
| FHIRResource | String | Notes |
| Model | String | Notes |
| SourceFile | String | |
| Status | String | current |
4 rows are stored for this page
| Field | Field type | Value |
|---|
| Model | String | Notes |
| Section | String | NoteThread fields |
| Field | String | title |
| FieldType | String | CharField(255) |
| Notes | Text | Nullable and blank-allowed in the column, but the spec requires it on write (<code>title: str</code>, <code>max_length=255</code>) |
| Field | Field type | Value |
|---|
| Model | String | Notes |
| Section | String | NoteMessage |
| Field | String | thread |
| FieldType | String | FK → NoteThread |
| Notes | Text | <code>on_delete=CASCADE</code>; deleting the thread deletes its messages. Excluded from spec serialization (<code>__exclude__</code>) and set from the URL/viewset context |
| Field | Field type | Value |
|---|
| Model | String | Notes |
| Section | String | NoteMessage |
| Field | String | message |
| FieldType | String | TextField |
| Notes | Text | Free-text body. Required on write (<code>message: str</code>) |
| Field | Field type | Value |
|---|
| Model | String | Notes |
| Section | String | NoteMessage |
| Field | String | message_history |
| FieldType | String | JSONField |
| Notes | Text | Defaults to <code>{}</code>. Opaque at the model layer; the spec gives it the shape below and rewrites it server-side on each edit. Read-only on the API |