# pub.chive.eprint.changelog

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

## Definitions

### `pub.chive.eprint.changelog`

**Type**: `record`

Structured changelog entry for eprint version

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `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 |
| `schemaRevision` | `integer` | No | Schema revision this record was created with. Absent means revision 1. |
| `previousVersion` | `ref` → `pub.chive.eprint.submission#semanticVersion` | No | Previous semantic version |
| `reviewerResponse` | `string` | No | Response to peer review feedback (if applicable) |

### `pub.chive.eprint.changelog#changeItem`

**Type**: `object`

Individual change entry

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `location` | `string` | No | Location in document (e.g., Section 3.2, Figure 5) |
| `changeType` | `string` | No | Type of change |
| `description` | `string` | Yes | Description of the change |
| `reviewReference` | `string` | No | Reference to reviewer comment being addressed |

### `pub.chive.eprint.changelog#changelogSection`

**Type**: `object`

A section of changes grouped by category

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `items` | `array` | Yes | Individual change items in this section |
| `category` | `string` | Yes | Category of changes (kebab-case per ATProto style guide) |

## Raw Schema

```json
{
  "id": "pub.chive.eprint.changelog",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "eprintUri",
          "version",
          "sections",
          "createdAt"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 500,
            "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": "#changelogSection",
              "type": "ref"
            },
            "maxLength": 20,
            "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"
          },
          "schemaRevision": {
            "type": "integer",
            "minimum": 1,
            "description": "Schema revision this record was created with. Absent means revision 1."
          },
          "previousVersion": {
            "ref": "pub.chive.eprint.submission#semanticVersion",
            "type": "ref",
            "description": "Previous semantic version"
          },
          "reviewerResponse": {
            "type": "string",
            "maxLength": 10000,
            "description": "Response to peer review feedback (if applicable)"
          }
        }
      },
      "description": "Structured changelog entry for eprint version"
    },
    "changeItem": {
      "type": "object",
      "required": [
        "description"
      ],
      "properties": {
        "location": {
          "type": "string",
          "maxLength": 100,
          "description": "Location in document (e.g., Section 3.2, Figure 5)"
        },
        "changeType": {
          "type": "string",
          "description": "Type of change",
          "knownValues": [
            "added",
            "changed",
            "removed",
            "fixed",
            "deprecated"
          ]
        },
        "description": {
          "type": "string",
          "maxLength": 2000,
          "description": "Description of the change"
        },
        "reviewReference": {
          "type": "string",
          "maxLength": 200,
          "description": "Reference to reviewer comment being addressed"
        }
      },
      "description": "Individual change entry"
    },
    "changelogSection": {
      "type": "object",
      "required": [
        "category",
        "items"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "#changeItem",
            "type": "ref"
          },
          "maxLength": 50,
          "description": "Individual change items in this section"
        },
        "category": {
          "type": "string",
          "description": "Category of changes (kebab-case per ATProto style guide)",
          "knownValues": [
            "methodology",
            "results",
            "analysis",
            "discussion",
            "conclusions",
            "data",
            "figures",
            "tables",
            "references",
            "supplementary-materials",
            "corrections",
            "formatting",
            "language-editing",
            "acknowledgments",
            "authorship",
            "other"
          ]
        }
      },
      "description": "A section of changes grouped by category"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
