---
sidebar_position: 7
description: Get shipment additional fields and other functions to work with Ozon in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Ozon]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get shipment additional fields
Returns the structure of inclusion of additional response fields for the GetFBOShipmentsList method
`Function GetShipmentAdditionalFields(Val Clear = False) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Clear | --empty | Boolean | ✖ | True > structure with empty valuse, False > field descriptions at values |
Returns: Structure Of KeyAndValue - Fields structure
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Ozon.GetShipmentAdditionalFields();
```
```bash
oint ozon GetShipmentAdditionalFields \
--empty false
```
```batch
oint ozon GetShipmentAdditionalFields ^
--empty false
```
```json title="Result"
{
"analytics_data": "",
"financial_data": ""
}
```