# dev.atvouch.graph.vouch

> Published by [atvouch.dev](https://lexicon.garden/identity/did:plc:kc7sabmrehsocvyo3bolhqyl)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kc7sabmrehsocvyo3bolhqyl/dev.atvouch.graph.vouch)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kc7sabmrehsocvyo3bolhqyl/dev.atvouch.graph.vouch/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kc7sabmrehsocvyo3bolhqyl/dev.atvouch.graph.vouch/examples)

## Definitions

### `dev.atvouch.graph.vouch`

**Type**: `record`

a vouch on atvouch.dev. the rkey of the record must be equal to the subject of the record, which must be a did. records that do not follow this should be considered invalid

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "dev.atvouch.graph.vouch",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "a vouch on atvouch.dev. the rkey of the record must be equal to the subject of the record, which must be a did. records that do not follow this should be considered invalid"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
