# net.botwatch.humanity

> 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.humanity)
- [Documentation](https://lexicon.garden/lexicon/did:plc:z46zh55ljmgogiammxofkrqz/net.botwatch.humanity/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:z46zh55ljmgogiammxofkrqz/net.botwatch.humanity/examples)

## Definitions

### `net.botwatch.humanity`

**Type**: `record`

A statement about whether the subject is human.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `score` | `integer` | Yes | 100000 indicates total confidence that {subject} is human. -100000 indicates the opposite. |
| `subject` | `union` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

### `net.botwatch.humanity#atprotoIdentity`

**Type**: `object`

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

### `net.botwatch.humanity#facebookIdentity`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `value` | `string` | Yes | A facebook user id. |

## Raw Schema

```json
{
  "id": "net.botwatch.humanity",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "score",
          "createdAt"
        ],
        "properties": {
          "score": {
            "type": "integer",
            "maximum": 100000,
            "minimum": -100000,
            "description": "100000 indicates total confidence that {subject} is human. -100000 indicates the opposite."
          },
          "subject": {
            "refs": [
              "#atprotoIdentity",
              "#stringSubject"
            ],
            "type": "union",
            "closed": false
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A statement about whether the subject is human."
    },
    "atprotoIdentity": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        }
      }
    },
    "facebookIdentity": {
      "type": "object",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "maxLength": 100,
          "description": "A facebook user id."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
