> ## 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.

# Section Type

> Section type represents a clinical note section using LOINC codes for ambient sessions

Section type represents a clinical note section using LOINC codes for ambient sessions. The code snippet below shows how to use the `Section` type to create a section object.

```js JavaScript theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type Section = {
  loinc: string;
  isPBNSection?: boolean;
};
```

## Properties

<Expandable title="properties" defaultOpen="true">
  <ResponseField name="loinc" type="string" required>
    Standard LOINC code identifying the section type
  </ResponseField>

  <ResponseField name="isPBNSection" type="boolean" default="false">
    Marks this section as the single PBN (Problem-Based Note) section. Only one section may be marked as PBN. If omitted on all sections, Assessment & Plan (LOINC `51847-2`) will be used as default
  </ResponseField>
</Expandable>
