# CodeParserTaskSetting Parameters

The `CodeParserTaskSetting` object configures code parsing tasks such as passport MRZ, driving license, and other structured data parsing in Dynamsoft Capture Vision.

## Example JSON

```json
{
    "CodeParserTaskSettingOptions": [
        {
            "Name": "CPT1_PARSE_VIN",
            "CodeSpecifications": ["VIN"],
            "ResourcesPath": "../VIN/"
        }
    ]
}
```

## Hierarchical Structure

This tree shows one `CodeParserTaskSetting` object inside `CodeParserTaskSettingOptions`.

```text
CodeParserTaskSetting
├── Name
├── CodeSpecifications
└── ResourcesPath
```

## Top-Level Parameters

| Parameter Name | Description |
|:---------------|:------------|
| [`Name`](https://www.dynamsoft.com/capture-vision/docs/core/parameters/reference/code-parser-task-settings/name.md) | The unique name of the CodeParserTaskSetting object. |
| [`CodeSpecifications`](https://www.dynamsoft.com/capture-vision/docs/core/parameters/reference/code-parser-task-settings/code-specifications.md) | The code specifications for parsing. |
| [`ResourcesPath`](https://www.dynamsoft.com/capture-vision/docs/core/parameters/reference/code-parser-task-settings/resources-path.md) | The path to the resources directory for code parsing. |


