# check-annotation

From **GitHub v3 REST API**.

Check Annotation

- Type: `object`

## Properties

### `annotation_level`

- Required: true
- Type: `string`
- Nullable: true
- Example: `warning`

### `blob_href`

- Required: true
- Type: `string`

### `end_column`

- Required: true
- Type: `integer`
- Nullable: true
- Example: `10`

### `end_line`

- Required: true
- Type: `integer`
- Example: `2`

### `message`

- Required: true
- Type: `string`
- Nullable: true
- Example: `Check your spelling for 'banaas'.`

### `path`

- Required: true
- Type: `string`
- Example: `README.md`

### `raw_details`

- Required: true
- Type: `string`
- Nullable: true
- Example: `Do you mean 'bananas' or 'banana'?`

### `start_column`

- Required: true
- Type: `integer`
- Nullable: true
- Example: `5`

### `start_line`

- Required: true
- Type: `integer`
- Example: `2`

### `title`

- Required: true
- Type: `string`
- Nullable: true
- Example: `Spell Checker`

## JSON Schema

```json
{"description":"Check Annotation","properties":{"annotation_level":{"example":"warning","nullable":true,"type":"string"},"blob_href":{"type":"string"},"end_column":{"example":10,"nullable":true,"type":"integer"},"end_line":{"example":2,"type":"integer"},"message":{"example":"Check your spelling for 'banaas'.","nullable":true,"type":"string"},"path":{"example":"README.md","type":"string"},"raw_details":{"example":"Do you mean 'bananas' or 'banana'?","nullable":true,"type":"string"},"start_column":{"example":5,"nullable":true,"type":"integer"},"start_line":{"example":2,"type":"integer"},"title":{"example":"Spell Checker","nullable":true,"type":"string"}},"required":["path","blob_href","start_line","end_line","start_column","end_column","annotation_level","title","message","raw_details"],"title":"Check Annotation","type":"object"}
```
