# pub.chive.notification.listReviewsOnMyPapers

> Published by [chive.pub](https://lexicon.garden/identity/did:plc:7natp5xae72bddaqlkef2t4e)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.notification.listReviewsOnMyPapers)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.notification.listReviewsOnMyPapers/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.notification.listReviewsOnMyPapers/examples)

## Definitions

### `pub.chive.notification.listReviewsOnMyPapers`

**Type**: `query`

List reviews/comments on papers authored by the current user

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Maximum results to return |
| `cursor` | `string` | No | Pagination cursor |
| `unreadOnly` | `boolean` | No | Only return unread notifications |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `unreadCount` | `integer` | No |  |
| `notifications` | `array` | Yes |  |

#### Errors

- **AuthenticationRequired**

### `pub.chive.notification.listReviewsOnMyPapers#authorRef`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `avatar` | `string` (uri) | No |  |
| `handle` | `string` | No |  |
| `displayName` | `string` | No |  |

### `pub.chive.notification.listReviewsOnMyPapers#reviewNotification`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | Review AT-URI |
| `isRead` | `boolean` | No |  |
| `preview` | `string` | No | Preview of review content |
| `reviewer` | `ref` → `#authorRef` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `eprintUri` | `string` (at-uri) | Yes |  |
| `eprintTitle` | `string` | No |  |

## Raw Schema

```json
{
  "id": "pub.chive.notification.listReviewsOnMyPapers",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "AuthenticationRequired"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "notifications"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "unreadCount": {
              "type": "integer"
            },
            "notifications": {
              "type": "array",
              "items": {
                "ref": "#reviewNotification",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 25,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum results to return"
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor"
          },
          "unreadOnly": {
            "type": "boolean",
            "default": false,
            "description": "Only return unread notifications"
          }
        }
      },
      "description": "List reviews/comments on papers authored by the current user"
    },
    "authorRef": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "avatar": {
          "type": "string",
          "format": "uri"
        },
        "handle": {
          "type": "string"
        },
        "displayName": {
          "type": "string"
        }
      }
    },
    "reviewNotification": {
      "type": "object",
      "required": [
        "uri",
        "eprintUri",
        "reviewer",
        "createdAt"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "Review AT-URI"
        },
        "isRead": {
          "type": "boolean"
        },
        "preview": {
          "type": "string",
          "description": "Preview of review content"
        },
        "reviewer": {
          "ref": "#authorRef",
          "type": "ref"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "eprintUri": {
          "type": "string",
          "format": "at-uri"
        },
        "eprintTitle": {
          "type": "string"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
