# commit-search-result-item

From **GitHub v3 REST API**.

Commit Search Result Item

- Type: `object`

## Properties

### `author`

- Required: true
- Type: `object`
- Nullable: true

Simple User

### `comments_url`

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

### `commit`

- Required: true
- Type: `object`

### `committer`

- Required: true
- Type: `object`
- Nullable: true

Metaproperties for Git author/committer information.

### `html_url`

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

### `node_id`

- Required: true
- Type: `string`

### `parents`

- Required: true
- Type: `array`

### `repository`

- Required: true
- Type: `object`

Minimal Repository

## JSON Schema

```json
{"description":"Commit Search Result Item","properties":{"author":{"$ref":"#/components/schemas/nullable-simple-user"},"comments_url":{"format":"uri","type":"string"},"commit":{"properties":{"author":{"properties":{"date":{"format":"date-time","type":"string"},"email":{"type":"string"},"name":{"type":"string"}},"required":["name","email","date"],"type":"object"},"comment_count":{"type":"integer"},"committer":{"$ref":"#/components/schemas/nullable-git-user"},"message":{"type":"string"},"tree":{"properties":{"sha":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["sha","url"],"type":"object"},"url":{"format":"uri","type":"string"},"verification":{"$ref":"#/components/schemas/verification"}},"required":["author","committer","comment_count","message","tree","url"],"type":"object"},"committer":{"$ref":"#/components/schemas/nullable-git-user"},"html_url":{"format":"uri","type":"string"},"node_id":{"type":"string"},"parents":{"items":{"properties":{"html_url":{"type":"string"},"sha":{"type":"string"},"url":{"type":"string"}},"type":"object"},"type":"array"},"repository":{"$ref":"#/components/schemas/minimal-repository"},"score":{"type":"number"},"sha":{"type":"string"},"text_matches":{"$ref":"#/components/schemas/search-result-text-matches"},"url":{"format":"uri","type":"string"}},"required":["sha","node_id","url","html_url","author","committer","parents","comments_url","commit","repository","score"],"title":"Commit Search Result Item","type":"object"}
```
