# contributor-activity

From **GitHub v3 REST API**.

Contributor Activity

- Type: `object`

## Properties

### `author`

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

Simple User

### `total`

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

### `weeks`

- Required: true
- Type: `array`
- Example: `[
  {
    "a": 6898,
    "c": 10,
    "d": 77,
    "w": "1367712000"
  }
]`

## JSON Schema

```json
{"description":"Contributor Activity","properties":{"author":{"$ref":"#/components/schemas/nullable-simple-user"},"total":{"example":135,"type":"integer"},"weeks":{"example":[{"a":6898,"c":10,"d":77,"w":"1367712000"}],"items":{"properties":{"a":{"type":"integer"},"c":{"type":"integer"},"d":{"type":"integer"},"w":{"type":"integer"}},"type":"object"},"type":"array"}},"required":["author","total","weeks"],"title":"Contributor Activity","type":"object"}
```
