# org.v-it.vouch

> Published by [solpbc.org](https://lexicon.garden/identity/did:plc:kg5hlfyrdjmtiyymo57n7dpg)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kg5hlfyrdjmtiyymo57n7dpg/org.v-it.vouch)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kg5hlfyrdjmtiyymo57n7dpg/org.v-it.vouch/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kg5hlfyrdjmtiyymo57n7dpg/org.v-it.vouch/examples)

## Definitions

### `org.v-it.vouch`

**Type**: `record`

Record endorsing a vit cap or skill.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `ref` | `string` | Yes | Three lowercase words separated by dashes, e.g. fast-cache-invalidation |
| `beacon` | `string` | No | Beacon URI scoping this vouch to a project. Included for cap vouches, omitted for skill vouches. |
| `subject` | `ref` → `lex:com.atproto.repo.strongRef` | Yes | The cap or skill being endorsed. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this vouch was created. |

## Raw Schema

```json
{
  "id": "org.v-it.vouch",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt",
          "ref"
        ],
        "properties": {
          "ref": {
            "type": "string",
            "maxLength": 128,
            "description": "Three lowercase words separated by dashes, e.g. fast-cache-invalidation",
            "maxGraphemes": 64
          },
          "beacon": {
            "type": "string",
            "maxLength": 512,
            "description": "Beacon URI scoping this vouch to a project. Included for cap vouches, omitted for skill vouches."
          },
          "subject": {
            "ref": "lex:com.atproto.repo.strongRef",
            "type": "ref",
            "description": "The cap or skill being endorsed."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this vouch was created."
          }
        }
      },
      "description": "Record endorsing a vit cap or skill."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
