> ## Documentation Index
> Fetch the complete documentation index at: https://vulhunt-docs.binarly.io/llms.txt
> Use this file to discover all available pages before exploring further.

# AnnotateAt

The `AnnotateAt` object is used to create an annotation at a specific address.

### Fields

| Field      | Description         | Type                                                     |
| :--------- | :------------------ | :------------------------------------------------------- |
| `location` | Address to annotate | [`AddressValue`](/vulhunt-reference/types/address-value) |
| `message`  | Annotation message  | `string`                                                 |

### Reference

#### location

The address ([`AddressValue`](/vulhunt-reference/types/address-value)) where the annotation should be placed.

#### message

The annotation message to display at the specified location.

### Example

```lua theme={null}
evidence = {
  functions = {
    [context.address] = {
      annotate:at{
        location = <AddressValue>,
        message = "annotate:at example"
      }
    }
  }
}
```
