# content-symlink

From **GitHub v3 REST API**.

An object describing a symlink

- Type: `object`

## Properties

### `_links`

- Required: true
- Type: `object`

### `download_url`

- Required: true
- Type: `string`
- Format: `uri`
- Nullable: true

### `git_url`

- Required: true
- Type: `string`
- Format: `uri`
- Nullable: true

### `html_url`

- Required: true
- Type: `string`
- Format: `uri`
- Nullable: true

### `name`

- Required: true
- Type: `string`

### `path`

- Required: true
- Type: `string`

### `sha`

- Required: true
- Type: `string`

### `size`

- Required: true
- Type: `integer`

### `target`

- Required: true
- Type: `string`

### `type`

- Required: true
- Type: `string`

### `url`

- Required: true
- Type: `string`
- Format: `uri`

## JSON Schema

```json
{"description":"An object describing a symlink","properties":{"_links":{"properties":{"git":{"format":"uri","nullable":true,"type":"string"},"html":{"format":"uri","nullable":true,"type":"string"},"self":{"format":"uri","type":"string"}},"required":["git","html","self"],"type":"object"},"download_url":{"format":"uri","nullable":true,"type":"string"},"git_url":{"format":"uri","nullable":true,"type":"string"},"html_url":{"format":"uri","nullable":true,"type":"string"},"name":{"type":"string"},"path":{"type":"string"},"sha":{"type":"string"},"size":{"type":"integer"},"target":{"type":"string"},"type":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["_links","git_url","html_url","download_url","name","path","sha","size","type","url","target"],"title":"Symlink Content","type":"object"}
```
