{
"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
}