# pub.chive.eprint.listCitations

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

## Definitions

### `pub.chive.eprint.listCitations`

**Type**: `query`

List citations for an eprint (auto-extracted and user-provided)

#### Parameters

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

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `total` | `integer` | No | Total number of matching citations |
| `cursor` | `string` | No | Pagination cursor for next page |
| `citations` | `array` | Yes |  |

### `pub.chive.eprint.listCitations#citation`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `doi` | `string` | No | DOI of the cited work |
| `uri` | `string` (at-uri) | No | AT-URI of the user-provided citation record (if user-provided) |
| `year` | `integer` | No | Publication year |
| `title` | `string` | Yes | Title of the cited work |
| `venue` | `string` | No | Publication venue |
| `source` | `string` | Yes | Source of the citation data |
| `arxivId` | `string` | No | arXiv identifier |
| `authors` | `array` | No | Author names |
| `context` | `string` | No | Contextual note about the citation |
| `chiveUri` | `string` (at-uri) | No | AT-URI of the cited work if it exists in Chive |
| `createdAt` | `string` (datetime) | No | When this citation was created or extracted |
| `confidence` | `integer` | No | Confidence score for auto-extracted citations (0-100) |
| `citationType` | `string` | No | Semantic type of the citation relationship |
| `isInfluential` | `boolean` | No | Whether this is an influential citation (from Semantic Scholar) |

## Raw Schema

```json
{
  "id": "pub.chive.eprint.listCitations",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "citations"
          ],
          "properties": {
            "total": {
              "type": "integer",
              "description": "Total number of matching citations"
            },
            "cursor": {
              "type": "string",
              "description": "Pagination cursor for next page"
            },
            "citations": {
              "type": "array",
              "items": {
                "ref": "#citation",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "eprintUri"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum number of citations to return"
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor"
          },
          "source": {
            "type": "string",
            "default": "all",
            "description": "Filter by citation source type",
            "knownValues": [
              "all",
              "user",
              "auto"
            ]
          },
          "eprintUri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the eprint to list citations for"
          }
        }
      },
      "description": "List citations for an eprint (auto-extracted and user-provided)"
    },
    "citation": {
      "type": "object",
      "required": [
        "title",
        "source"
      ],
      "properties": {
        "doi": {
          "type": "string",
          "description": "DOI of the cited work"
        },
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT-URI of the user-provided citation record (if user-provided)"
        },
        "year": {
          "type": "integer",
          "description": "Publication year"
        },
        "title": {
          "type": "string",
          "description": "Title of the cited work"
        },
        "venue": {
          "type": "string",
          "description": "Publication venue"
        },
        "source": {
          "type": "string",
          "description": "Source of the citation data",
          "knownValues": [
            "semantic-scholar",
            "crossref",
            "grobid",
            "user-provided"
          ]
        },
        "arxivId": {
          "type": "string",
          "description": "arXiv identifier"
        },
        "authors": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Author names"
        },
        "context": {
          "type": "string",
          "description": "Contextual note about the citation"
        },
        "chiveUri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT-URI of the cited work if it exists in Chive"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime",
          "description": "When this citation was created or extracted"
        },
        "confidence": {
          "type": "integer",
          "description": "Confidence score for auto-extracted citations (0-100)"
        },
        "citationType": {
          "type": "string",
          "description": "Semantic type of the citation relationship"
        },
        "isInfluential": {
          "type": "boolean",
          "description": "Whether this is an influential citation (from Semantic Scholar)"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
