# pub.chive.actor.autocompleteOpenReview

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

## Definitions

### `pub.chive.actor.autocompleteOpenReview`

**Type**: `query`

Autocomplete OpenReview profiles (proxied since OpenReview API does not support CORS)

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Maximum number of suggestions to return |
| `query` | `string` | Yes | Search query for researcher name |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `suggestions` | `array` | Yes |  |

### `pub.chive.actor.autocompleteOpenReview#openReviewSuggestion`

**Type**: `object`

An OpenReview profile suggestion

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes | OpenReview profile ID (e.g., ~John_Smith1) |
| `displayName` | `string` | Yes | Full name of the researcher |
| `institution` | `string` | No | Current institution if available |

## Raw Schema

```json
{
  "id": "pub.chive.actor.autocompleteOpenReview",
  "defs": {
    "main": {
      "type": "query",
      "errors": [],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "suggestions"
          ],
          "properties": {
            "suggestions": {
              "type": "array",
              "items": {
                "ref": "#openReviewSuggestion",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "query"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 10,
            "maximum": 50,
            "minimum": 1,
            "description": "Maximum number of suggestions to return"
          },
          "query": {
            "type": "string",
            "minLength": 1,
            "description": "Search query for researcher name"
          }
        }
      },
      "description": "Autocomplete OpenReview profiles (proxied since OpenReview API does not support CORS)"
    },
    "openReviewSuggestion": {
      "type": "object",
      "required": [
        "id",
        "displayName"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "OpenReview profile ID (e.g., ~John_Smith1)"
        },
        "displayName": {
          "type": "string",
          "description": "Full name of the researcher"
        },
        "institution": {
          "type": "string",
          "description": "Current institution if available"
        }
      },
      "description": "An OpenReview profile suggestion"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
