# AttributeArray

**Kind**: type alias | **Module**: [Insights](https://docs.interop.io/desktop/reference/javascript/insights/index.md)

**Source**: https://docs.interop.io/desktop/reference/javascript/insights/attributearray/index.html

Array type for span/log attributes that can contain primitive values or null/undefined.
Used when attribute values need to be represented as arrays in OpenTelemetry context.

```ts
type AttributeArray = Array<null | undefined | string | number | boolean>
```
