# org.swappulse.vouch

> Published by [bridge.swappulse.org](https://lexicon.garden/identity/did:plc:jwoatauidzr4lollmro2gh35)

## Description

A collector's vouch for another collector's trustworthiness, mirrored to AT Protocol so the trust graph is portable and verifiable across PDSs and SwapPulse instances.

## Links

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

## Definitions

### `org.swappulse.vouch`

**Type**: `record`

A vouch endorsing another collector.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `context` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `revocable` | `boolean` | No |  |
| `revokedAt` | `string` (datetime) | No |  |
| `tradeRefs` | `array` | No |  |
| `vouchedDid` | `string` (did) | Yes |  |
| `voucherDid` | `string` (did) | No |  |
| `vouchedName` | `string` | No |  |
| `voucherName` | `string` | No |  |
| `relationship` | `string` | Yes |  |
| `vouchedHandle` | `string` | No |  |
| `voucherHandle` | `string` | No |  |

## Raw Schema

```json
{
  "id": "org.swappulse.vouch",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "vouchedDid",
          "relationship",
          "context",
          "createdAt"
        ],
        "properties": {
          "context": {
            "type": "string",
            "maxLength": 280
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "revocable": {
            "type": "boolean"
          },
          "revokedAt": {
            "type": "string",
            "format": "datetime"
          },
          "tradeRefs": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 5
          },
          "vouchedDid": {
            "type": "string",
            "format": "did"
          },
          "voucherDid": {
            "type": "string",
            "format": "did"
          },
          "vouchedName": {
            "type": "string"
          },
          "voucherName": {
            "type": "string"
          },
          "relationship": {
            "type": "string",
            "knownValues": [
              "trade_partner",
              "community_member",
              "personal_acquaintance",
              "repeat_trader"
            ]
          },
          "vouchedHandle": {
            "type": "string"
          },
          "voucherHandle": {
            "type": "string"
          }
        }
      },
      "description": "A vouch endorsing another collector."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "A collector's vouch for another collector's trustworthiness, mirrored to AT Protocol so the trust graph is portable and verifiable across PDSs and SwapPulse instances."
}
```
