pub.chive.discovery.getEnrichment

chive.pub

Documentation

Get enrichment data for an eprint (citations, concepts, topics)

main query

Get enrichment data for an eprint (citations, concepts, topics)

Parameters

uri string at-uri Required

Eprint AT-URI

Output

Encodingapplication/json
available boolean Required

Whether enrichment data is available

Errors

NotFound
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Eprint AT-URI
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "available"
      ],
      "properties": {
        "available": {
          "type": "boolean",
          "description": "Whether enrichment data is available"
        },
        "enrichment": {
          "ref": "#enrichmentData",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "uri": {
        "type": "string",
        "format": "at-uri",
        "description": "Eprint AT-URI"
      }
    }
  },
  "description": "Get enrichment data for an eprint (citations, concepts, topics)"
}
concept object

No description available.

Properties

displayName string Required

No description available.

id string Required

No description available.

score integer Optional

Relevance score (scaled by 1000 for 0.0-1.0 range)

minimum: 0maximum: 1000
wikidataId string Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "displayName"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "score": {
      "type": "integer",
      "maximum": 1000,
      "minimum": 0,
      "description": "Relevance score (scaled by 1000 for 0.0-1.0 range)"
    },
    "wikidataId": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    }
  }
}
enrichmentData object

No description available.

Properties

citationCount integer Optional

Total citation count

concepts array of ref#concept Optional

No description available.

influentialCitationCount integer Optional

Influential citation count

lastEnrichedAt string datetime Optional

An RFC 3339 formatted timestamp.

openAlexId string Optional

OpenAlex work ID

referencesCount integer Optional

Number of references

semanticScholarId string Optional

Semantic Scholar paper ID

topics array of ref#topic Optional

No description available.

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "topics": {
      "type": "array",
      "items": {
        "ref": "#topic",
        "type": "ref"
      }
    },
    "concepts": {
      "type": "array",
      "items": {
        "ref": "#concept",
        "type": "ref"
      }
    },
    "openAlexId": {
      "type": "string",
      "description": "OpenAlex work ID"
    },
    "citationCount": {
      "type": "integer",
      "description": "Total citation count"
    },
    "lastEnrichedAt": {
      "type": "string",
      "format": "datetime"
    },
    "referencesCount": {
      "type": "integer",
      "description": "Number of references"
    },
    "semanticScholarId": {
      "type": "string",
      "description": "Semantic Scholar paper ID"
    },
    "influentialCitationCount": {
      "type": "integer",
      "description": "Influential citation count"
    }
  }
}
topic object

No description available.

Properties

displayName string Required

No description available.

domain string Optional

No description available.

field string Optional

No description available.

id string Required

No description available.

score integer Optional

Relevance score (scaled by 1000 for 0.0-1.0 range)

minimum: 0maximum: 1000
subfield string Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "displayName"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "field": {
      "type": "string"
    },
    "score": {
      "type": "integer",
      "maximum": 1000,
      "minimum": 0,
      "description": "Relevance score (scaled by 1000 for 0.0-1.0 range)"
    },
    "domain": {
      "type": "string"
    },
    "subfield": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    }
  }
}

Lexicon Garden

@