# com.naturesfieldbook.temp.taxon

> Published by [naturesfieldbook.com](https://lexicon.garden/identity/did:plc:kwsbfxo66vyjlztsotj65c37)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kwsbfxo66vyjlztsotj65c37/com.naturesfieldbook.temp.taxon)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kwsbfxo66vyjlztsotj65c37/com.naturesfieldbook.temp.taxon/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kwsbfxo66vyjlztsotj65c37/com.naturesfieldbook.temp.taxon/examples)

## Definitions

### `com.naturesfieldbook.temp.taxon`

**Type**: `record`

One or more populations of an organism which forms a biological unit.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `rank` | `string` | Yes |  |
| `parent` | `ref` → `com.atproto.repo.strongRef` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |
| `commonName` | `string` | No |  |
| `scientificName` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "com.naturesfieldbook.temp.taxon",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "nullable": [
          "commonName",
          "parent"
        ],
        "required": [
          "createdAt",
          "rank",
          "scientificName",
          "updatedAt"
        ],
        "properties": {
          "rank": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "Kingdom",
              "Class",
              "Order",
              "Family",
              "Genus",
              "Species"
            ]
          },
          "parent": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "commonName": {
            "type": "string",
            "maxLength": 256
          },
          "scientificName": {
            "type": "string",
            "maxLength": 256
          }
        }
      },
      "description": "One or more populations of an organism which forms a biological unit."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
