# User
The author of a blog article.
## Overview
Information returned by the `user` object can be modified through the Account page in the Shopify admin dashboard.
## Properties
| Property | Type | Description |
|----------|------|-------------|
| `account_owner` | boolean | Indicates whether the author is the store's account owner |
| `bio` | string | The author's biographical information (returns `nil` if not set) |
| `email` | string | The author's email address |
| `first_name` | string | The author's first name |
| `homepage` | string | URL to the author's personal website (returns `nil` if not set) |
| `image` | image | The author's profile image (returns `nil` if not set) |
| `last_name` | string | The author's last name |
| `name` | string | The author's full name (first and last) |
## Example
```json
{
"account_owner": false,
"bio": "Polina got her first cauldron at the tender age of six, and she has been passionate about potions ever since!!",
"email": "polinas.potent.potions@gmail.com",
"first_name": "Polina",
"homepage": null,
"image": {},
"last_name": "Waters",
"name": "Polina Waters"
}
```