### record

In AppleScript, an unordered collection of properties identified by unique labels, enclosed by brackets. Record is an AppleScript value class. For example:

```
{height: 72.5, age: 25, hair: "black"}
```

where `height`, `age`, and `hair` are property names and `72.5, 25,` and `"black"` are values. 