# net.botwatch.trust

> Published by [7hird.dev](https://lexicon.garden/identity/did:plc:z46zh55ljmgogiammxofkrqz)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:z46zh55ljmgogiammxofkrqz/net.botwatch.trust)
- [Documentation](https://lexicon.garden/lexicon/did:plc:z46zh55ljmgogiammxofkrqz/net.botwatch.trust/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:z46zh55ljmgogiammxofkrqz/net.botwatch.trust/examples)

## Definitions

### `net.botwatch.trust`

**Type**: `record`

How much the user trusts the subject to verify humans, identify bots, and trust the worthy.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `score` | `integer` | Yes | 100000 indicates maximum trust in the subject. -100000 indicates maximum distrust. |
| `subject` | `string` (did) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "net.botwatch.trust",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "score",
          "createdAt"
        ],
        "properties": {
          "score": {
            "type": "integer",
            "maximum": 100000,
            "minimum": -100000,
            "description": "100000 indicates maximum trust in the subject. -100000 indicates maximum distrust."
          },
          "subject": {
            "type": "string",
            "format": "did"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "How much the user trusts the subject to verify humans, identify bots, and trust the worthy."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
