{
"id": "pub.chive.claiming.findClaimable",
"defs": {
"main": {
"type": "query",
"errors": [
{
"name": "AuthenticationRequired",
"description": "Authentication is required to find claimable eprints"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"eprints",
"hasMore"
],
"properties": {
"cursor": {
"type": "string",
"description": "Cursor for next page of results"
},
"eprints": {
"type": "array",
"items": {
"ref": "#claimableEprint",
"type": "ref"
},
"description": "List of claimable eprints"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"q": {
"type": "string",
"description": "Search query (title, author name, DOI)"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"source": {
"type": "string",
"description": "Filter by external source",
"knownValues": [
"arxiv",
"biorxiv",
"medrxiv",
"osf",
"lingbuzz",
"zenodo",
"ssrn",
"philpapers"
]
}
}
},
"description": "Find claimable eprints matching the user's identity or search criteria. Requires authentication."
},
"eprintAuthor": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Author display name"
},
"orcid": {
"type": "string",
"description": "ORCID identifier if available"
},
"affiliation": {
"type": "string",
"description": "Institutional affiliation if available"
}
},
"description": "Author information from external source"
},
"claimableEprint": {
"type": "object",
"required": [
"id",
"source",
"externalId",
"url",
"title",
"authors"
],
"properties": {
"id": {
"type": "integer",
"description": "Internal import ID"
},
"doi": {
"type": "string",
"description": "DOI if assigned"
},
"url": {
"type": "string",
"format": "uri",
"description": "URL to the eprint on the external source"
},
"title": {
"type": "string",
"description": "Eprint title"
},
"source": {
"type": "string",
"description": "External source identifier"
},
"authors": {
"type": "array",
"items": {
"ref": "#eprintAuthor",
"type": "ref"
},
"description": "List of authors"
},
"externalId": {
"type": "string",
"description": "Source-specific identifier"
},
"publicationDate": {
"type": "string",
"format": "datetime",
"description": "Publication or submission date"
}
},
"description": "An eprint that can be claimed by the user"
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"revision": 1
}