---
alias: user-guide-automation-converter-objectproperty
description: "This documentation details a converter that retrieves object property values based on specified paths and types"
---
# Object Property
This converter receives an object, it iterates through it using the path input and returns the found value casted in the type specified in the input type. If no value is found, it will use the default value. It can also be configured to fail if the property is not found. If for example, one has a raw event, it will have this kind of object :
![image124][image124]
[image124]: ./images/image124.png
If you wanted to access a property of this object, for example `$id`, you could use the input path as `event.$id` and input type `Integer`.
## Settings
| Name | Data Type | Possible Values | Description |
| -------------- | --------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
| path | `String` | | Path to use to find the property on the object |
| type | `Enum` | `Boolean`
`String`
`Integer`
`Long`
`Decimal`
`Object` | Result type of the value to output |
| defaultValue | `any` | | Default value to return if not found and `failIfNotFound`is set to true |
| failIfNotFound | `Boolean` | | Should an exception be raised if the path is not found in the object |
![image125][image125]
[image125]: ./images/image125.png