> ## Documentation Index
> Fetch the complete documentation index at: https://developer.suki.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# NoteContent Type

> NoteContent type represents the content structure for clinical notes

NoteContent type represents the content structure for clinical notes, including optional diagnosis and LOINC code. The code snippet below shows how to use the `NoteContent` type to create a note content object.

```js JavaScript theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type NoteContent = {
  title: string;
  content: string;
  diagnosis?: Diagnosis;
  loinc_code?: string;
};
```

## Properties

<Expandable title="properties" defaultOpen="true">
  <ResponseField name="title" type="string">
    The title of the section
  </ResponseField>

  <ResponseField name="content" type="string">
    Content of the section in plain text
  </ResponseField>

  <ResponseField name="diagnosis" type="Diagnosis">
    Array of clinical note sections to generate suggestions. Refer to the [Diagnosis](/web-sdk/api-reference/types/diagnosis) page for more information.
  </ResponseField>

  <ResponseField name="loinc_code" type="string">
    LOINC code of the section
  </ResponseField>
</Expandable>
