> For the complete documentation index, see [llms.txt](https://daseldocs.tomwright.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://daseldocs.tomwright.me/v1/selectors/property.md).

# Property

## Description

A property selector is the most common selector, and is used to select a specific named property within a map.

## Usage

```shell
.propertyName
```

## Example

```shell
$ echo '{"name": "Tom"}' | dasel -p json '.name'
Tom
```
