# Interface: ImageAttributionNode

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

An attribution node that renders as a hyperlinked image.

This is often the logo of the data source along with a link back to the home page of the data source or directly to the source data.

## Example

```
sdk.makeAttributionNode({
  type: sdk.AttributionNodeType.Image,
  anchorUrl: "https://example.com",
  imageUrl: "https://example.com/assets/logo.png",
});
```

## Properties

### anchorUrl

> **anchorUrl**: `string`

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

The URL to link to.

______________________________________________________________________

### imageUrl

> **imageUrl**: `string`

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

The URL of the image to render.

______________________________________________________________________

### type

> **type**: [`Image`](../../enumerations/AttributionNodeType/#image)

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

Identifies this as an image attribution node.
