# Interface: LinkAttributionNode

Defined in: [schema.ts:1811](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L1811)

An attribution node that renders a hyperlink.

This might be used to attribute the data source and link back to the home page of the data source or directly to the source data.

## Example

```
sdk.makeAttributionNode({
  type: sdk.AttributionNodeType.Link,
  anchorUrl: "https://example.com",
  anchorText: "Data provided by ExampleCorp.",
});
```

## Properties

### anchorText

> **anchorText**: `string`

Defined in: [schema.ts:1817](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L1817)

The text of the hyperlink.

______________________________________________________________________

### anchorUrl

> **anchorUrl**: `string`

Defined in: [schema.ts:1815](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L1815)

The URL to link to.

______________________________________________________________________

### type

> **type**: [`Link`](../../enumerations/AttributionNodeType/#link)

Defined in: [schema.ts:1813](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L1813)

Identifies this as a link attribution node.
