# pub.chive.eprint.listChangelogs

> 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.eprint.listChangelogs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.eprint.listChangelogs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.eprint.listChangelogs/examples)

## Definitions

### `pub.chive.eprint.listChangelogs`

**Type**: `query`

List all changelog entries for an eprint

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Maximum number of changelogs to return |
| `cursor` | `string` | No | Pagination cursor |
| `eprintUri` | `string` (at-uri) | Yes | AT-URI of the eprint to list changelogs for |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No | Pagination cursor for next page |
| `changelogs` | `array` | Yes | List of changelog entries, newest first |

### `pub.chive.eprint.listChangelogs#changelogView`

**Type**: `object`

A changelog entry view

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | Content ID of the changelog record |
| `uri` | `string` (at-uri) | Yes | AT-URI of the changelog record |
| `summary` | `string` | No | One-line summary of changes |
| `version` | `ref` → `pub.chive.eprint.submission#semanticVersion` | Yes | Semantic version this changelog describes |
| `sections` | `array` | Yes | Structured changelog sections |
| `createdAt` | `string` (datetime) | Yes | When this changelog was created |
| `eprintUri` | `string` (at-uri) | Yes | URI of the eprint this changelog belongs to |
| `previousVersion` | `ref` → `pub.chive.eprint.submission#semanticVersion` | No | Previous semantic version |
| `reviewerResponse` | `string` | No | Response to peer review feedback |

## Raw Schema

```json
{
  "id": "pub.chive.eprint.listChangelogs",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "changelogs"
          ],
          "properties": {
            "cursor": {
              "type": "string",
              "description": "Pagination cursor for next page"
            },
            "changelogs": {
              "type": "array",
              "items": {
                "ref": "#changelogView",
                "type": "ref"
              },
              "description": "List of changelog entries, newest first"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "eprintUri"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum number of changelogs to return"
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor"
          },
          "eprintUri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the eprint to list changelogs for"
          }
        }
      },
      "description": "List all changelog entries for an eprint"
    },
    "changelogView": {
      "type": "object",
      "required": [
        "uri",
        "cid",
        "eprintUri",
        "version",
        "sections",
        "createdAt"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid",
          "description": "Content ID of the changelog record"
        },
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT-URI of the changelog record"
        },
        "summary": {
          "type": "string",
          "description": "One-line summary of changes"
        },
        "version": {
          "ref": "pub.chive.eprint.submission#semanticVersion",
          "type": "ref",
          "description": "Semantic version this changelog describes"
        },
        "sections": {
          "type": "array",
          "items": {
            "ref": "pub.chive.eprint.changelog#changelogSection",
            "type": "ref"
          },
          "description": "Structured changelog sections"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime",
          "description": "When this changelog was created"
        },
        "eprintUri": {
          "type": "string",
          "format": "at-uri",
          "description": "URI of the eprint this changelog belongs to"
        },
        "previousVersion": {
          "ref": "pub.chive.eprint.submission#semanticVersion",
          "type": "ref",
          "description": "Previous semantic version"
        },
        "reviewerResponse": {
          "type": "string",
          "description": "Response to peer review feedback"
        }
      },
      "description": "A changelog entry view"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
