# feed

From **GitHub v3 REST API**.

Feed

- Type: `object`

## Properties

### `_links`

- Required: true
- Type: `object`

### `current_user_actor_url`

- Required: false
- Type: `string`
- Example: `https://github.com/octocat.private.actor?token=abc123`

### `current_user_organization_url`

- Required: false
- Type: `string`
- Example: `https://github.com/octocat-org`

### `current_user_organization_urls`

- Required: false
- Type: `array`
- Example: `[
  "https://github.com/organizations/github/octocat.private.atom?token=abc123"
]`

### `current_user_public_url`

- Required: false
- Type: `string`
- Example: `https://github.com/octocat`

### `current_user_url`

- Required: false
- Type: `string`
- Example: `https://github.com/octocat.private?token=abc123`

### `timeline_url`

- Required: true
- Type: `string`
- Example: `https://github.com/timeline`

### `user_url`

- Required: true
- Type: `string`
- Example: `https://github.com/{user}`

## JSON Schema

```json
{"description":"Feed","properties":{"_links":{"properties":{"current_user":{"$ref":"#/components/schemas/link-with-type"},"current_user_actor":{"$ref":"#/components/schemas/link-with-type"},"current_user_organization":{"$ref":"#/components/schemas/link-with-type"},"current_user_organizations":{"items":{"$ref":"#/components/schemas/link-with-type"},"type":"array"},"current_user_public":{"$ref":"#/components/schemas/link-with-type"},"security_advisories":{"$ref":"#/components/schemas/link-with-type"},"timeline":{"$ref":"#/components/schemas/link-with-type"},"user":{"$ref":"#/components/schemas/link-with-type"}},"required":["timeline","user"],"type":"object"},"current_user_actor_url":{"example":"https://github.com/octocat.private.actor?token=abc123","type":"string"},"current_user_organization_url":{"example":"https://github.com/octocat-org","type":"string"},"current_user_organization_urls":{"example":["https://github.com/organizations/github/octocat.private.atom?token=abc123"],"items":{"format":"uri","type":"string"},"type":"array"},"current_user_public_url":{"example":"https://github.com/octocat","type":"string"},"current_user_url":{"example":"https://github.com/octocat.private?token=abc123","type":"string"},"timeline_url":{"example":"https://github.com/timeline","type":"string"},"user_url":{"example":"https://github.com/{user}","type":"string"}},"required":["_links","timeline_url","user_url"],"title":"Feed","type":"object"}
```
