pub.chive.actor.autocompleteAffiliation

chive.pub

Documentation

Autocomplete institutional affiliations using the Research Organization Registry (ROR) API

main query

Autocomplete institutional affiliations using the Research Organization Registry (ROR) API

Parameters

limit integer Optional

Maximum number of suggestions to return

query string Required

Search query for institution name

Output

Encodingapplication/json
suggestions array Required

No description available.

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
Maximum number of suggestions to return
Search query for institution name
View raw schema
{
  "type": "query",
  "errors": [],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "suggestions"
      ],
      "properties": {
        "suggestions": {
          "type": "array",
          "items": {
            "ref": "#affiliationSuggestion",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "query"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 8,
        "maximum": 50,
        "minimum": 1,
        "description": "Maximum number of suggestions to return"
      },
      "query": {
        "type": "string",
        "minLength": 1,
        "description": "Search query for institution name"
      }
    }
  },
  "description": "Autocomplete institutional affiliations using the Research Organization Registry (ROR) API"
}
affiliationSuggestion object

An affiliation suggestion from the ROR database

Properties

acronym string Optional

Institution acronym if available

country string Required

Country where the institution is located

name string Required

Display name of the institution

rorId string Required

ROR identifier URL (e.g., https://ror.org/02mhbdp94)

types array of string Required

Organization types (e.g., Education, Nonprofit)

View raw schema
{
  "type": "object",
  "required": [
    "rorId",
    "name",
    "country",
    "types"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the institution"
    },
    "rorId": {
      "type": "string",
      "description": "ROR identifier URL (e.g., https://ror.org/02mhbdp94)"
    },
    "types": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Organization types (e.g., Education, Nonprofit)"
    },
    "acronym": {
      "type": "string",
      "description": "Institution acronym if available"
    },
    "country": {
      "type": "string",
      "description": "Country where the institution is located"
    }
  },
  "description": "An affiliation suggestion from the ROR database"
}

Lexicon Garden

@