--- sidebar_position: 4 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Get field (numeric) Gets the description of a numeric field `Function GetNumberField(Val Name, Val Precision = 0) Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Name | --title | String | ✔ | New field name | | Precision | --precision | Number, String | ✖ | Number of decimal places | Returns: Structure - Field description
```bsl title="1C:Enterprise/OneScript code example" Result = OPI_Airtable.GetNumberField("Number"); ``` ```bash oint airtable GetNumberField \ --title "7d05d80b-006e-46e6-b4d9-55e601476fb2" ``` ```batch oint airtable GetNumberField ^ --title "7d05d80b-006e-46e6-b4d9-55e601476fb2" ``` ```json title="Result" { "name": "Number", "type": "number", "options": { "precision": 0 } } ```