# FieldGroupValue Class

> FieldGroupValue facade in the V1 navigator for a single field group instance, exposing its component fields together with confidence and validator properties.

## Definition

* Namespace: `UiPath.DocumentProcessing.Contracts.Extensions.Navigator.V1`
* Assembly: `UiPath.DocumentProcessing.Contracts`
* Inherits: [ComponentCollectionFacade](componentcollectionfacade-class.md)

## Description

`FieldGroupValue` is a facade for a single instance of a field group. It wraps a [ResultsValue](results-value-class.md) and, because it inherits from [ComponentCollectionFacade](componentcollectionfacade-class.md), exposes the navigation methods that query the instance's component fields.

In addition to the inherited navigation methods, it exposes the value's confidence and validator properties. A `FieldGroupValue` is typically obtained from [FieldGroupDataPoint](fieldgroupdatapoint-class.md) or from `GetFieldGroupValue(...)` on [ComponentCollectionFacade](componentcollectionfacade-class.md).

## Members

### Constructors

| Constructor | Description |
|---|---|
| `FieldGroupValue(ResultsValue fieldGroupValue)` | Initializes a new instance wrapping the specified field group value. The value components are used as the field collection for the inherited navigation methods. |

### Properties

| Property | Type | Description |
|---|---|---|
| `Confidence` | `float` | The confidence score of the instance. Read/write. |
| `OcrConfidence` | `float` | The Optical Character Recognition (OCR) confidence score of the instance. Read/write. |
| `OperatorConfirmed` | `bool` | Whether the value was confirmed by an operator. Read/write. |
| `Reference` | `ResultsContentReference` | The content reference of the instance. Read-only. |
| `DerivedFields` | `ResultsDerivedField[]` | The derived fields of the instance. Read-only. |
| `ValidatorNotes` | `string` | The validator notes for the instance. Read/write. |
| `ValidatorNotesInfo` | `string` | Additional validator information for the instance. Read/write. |

### Methods

| Method | Returns | Description |
|---|---|---|
| `GetRawResultsValue()` | [ResultsValue](results-value-class.md) | Returns the underlying value wrapped by the facade. |

### Inherited members

The field navigation methods (`GetFields`, `GetSimpleFields`, `GetSimpleField`, `GetTables`, `GetTable`, `GetTableValue`, `GetFieldGroups`, `GetFieldGroup`, `GetFieldGroupValue`) are inherited from [ComponentCollectionFacade](componentcollectionfacade-class.md) and operate on this instance's component fields.
