# blue.microcosm.identity.resolveMiniDoc

> Published by [microcosm.blue](https://lexicon.garden/identity/did:plc:lulmyldiq4sb2ikags5sfb25)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lulmyldiq4sb2ikags5sfb25/blue.microcosm.identity.resolveMiniDoc)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lulmyldiq4sb2ikags5sfb25/blue.microcosm.identity.resolveMiniDoc/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lulmyldiq4sb2ikags5sfb25/blue.microcosm.identity.resolveMiniDoc/examples)

## Definitions

### `blue.microcosm.identity.resolveMiniDoc`

**Type**: `query`

like com.atproto.identity.resolveIdentity but instead of the full DID Doc, returns an atproto-relevant subset

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `identifier` | `string` (at-identifier) | Yes | handle or DID to resolve |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | DID, bi-directionally verified if a handle was provided in the query |
| `pds` | `string` (uri) | Yes | the identity's PDS URL |
| `handle` | `string` (handle) | Yes | the validated handle of the account or 'handle.invalid' if the handle did not bi-directionally match the DID document |
| `signing_key` | `string` | Yes | the atproto signing key publicKeyMultibase |

## Raw Schema

```json
{
  "id": "blue.microcosm.identity.resolveMiniDoc",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "did",
            "handle",
            "pds",
            "signing_key"
          ],
          "properties": {
            "did": {
              "type": "string",
              "format": "did",
              "description": "DID, bi-directionally verified if a handle was provided in the query"
            },
            "pds": {
              "type": "string",
              "format": "uri",
              "description": "the identity's PDS URL"
            },
            "handle": {
              "type": "string",
              "format": "handle",
              "description": "the validated handle of the account or 'handle.invalid' if the handle did not bi-directionally match the DID document"
            },
            "signing_key": {
              "type": "string",
              "description": "the atproto signing key publicKeyMultibase"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "identifier"
        ],
        "properties": {
          "identifier": {
            "type": "string",
            "format": "at-identifier",
            "description": "handle or DID to resolve"
          }
        }
      },
      "description": "like com.atproto.identity.resolveIdentity but instead of the full DID Doc, returns an atproto-relevant subset"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
