# social.colibri.beta.defs

> Published by [colibri.social](https://lexicon.garden/identity/did:plc:mprdjqjluoswa7awzggaggj3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.defs/examples)

## Definitions

### `social.colibri.beta.defs#recordRef`

**Type**: `object`

A reference to a record in the same space. Record keys are unique per repo rather than per space, so a bare key cannot address a record in a space that aggregates many authors.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | DID of the repo holding the referenced record. |
| `rkey` | `string` (record-key) | Yes | Record key of the referenced record. |

## Raw Schema

```json
{
  "id": "social.colibri.beta.defs",
  "defs": {
    "recordRef": {
      "type": "object",
      "required": [
        "did",
        "rkey"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "DID of the repo holding the referenced record."
        },
        "rkey": {
          "type": "string",
          "format": "record-key",
          "description": "Record key of the referenced record."
        }
      },
      "description": "A reference to a record in the same space. Record keys are unique per repo rather than per space, so a bare key cannot address a record in a space that aggregates many authors."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
