# org.cannadb.breeder

> Published by [cannadb.org](https://lexicon.garden/identity/did:plc:lrtzzib3ycggsodkfidzuorw)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lrtzzib3ycggsodkfidzuorw/org.cannadb.breeder)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lrtzzib3ycggsodkfidzuorw/org.cannadb.breeder/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lrtzzib3ycggsodkfidzuorw/org.cannadb.breeder/examples)

## Definitions

### `org.cannadb.breeder`

**Type**: `record`

A breeder identity claim describing a cannabis breeder or seed company. Trust is determined by the publisher DID's relationship to the subject (a record published from a handle matching the breeder's domain is treated as the authoritative self-claim); third-party-attributed records are typically displaced when the breeder publishes their own.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `logo` | `blob` | No | Logo image for the breeder. Accepts common web image formats; capped at 500 KB since logos are typically small icons. |
| `name` | `string` | Yes | Primary common name of the breeder, e.g., "Seed Junky Genetics". |
| `region` | `string` | No | Primary region of operation, e.g., "Humboldt County, California". |
| `founded` | `integer` | No | Year the breeder was founded. |
| `website` | `string` (uri) | No | Informational website URL. No link-rot guarantee — display only. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this record was originally created. |
| `description` | `string` | No | Markdown-formatted free-form description of the breeder. Capped at 10000 graphemes (100000 bytes). |
| `socialLinks` | `array` | No | Social-media or external presence links for the breeder. |

### `org.cannadb.breeder#socialLink`

**Type**: `object`

A platform-tagged URL pointing to the breeder's profile or presence on an external service.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | URL to the breeder's profile or content on this platform. |
| `platform` | `string` | Yes | Free-form platform identifier, e.g., "instagram", "twitter", "youtube". |

## Raw Schema

```json
{
  "id": "org.cannadb.breeder",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "logo": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 500000,
            "description": "Logo image for the breeder. Accepts common web image formats; capped at 500 KB since logos are typically small icons."
          },
          "name": {
            "type": "string",
            "description": "Primary common name of the breeder, e.g., \"Seed Junky Genetics\"."
          },
          "region": {
            "type": "string",
            "description": "Primary region of operation, e.g., \"Humboldt County, California\"."
          },
          "founded": {
            "type": "integer",
            "description": "Year the breeder was founded."
          },
          "website": {
            "type": "string",
            "format": "uri",
            "description": "Informational website URL. No link-rot guarantee — display only."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this record was originally created."
          },
          "description": {
            "type": "string",
            "maxLength": 100000,
            "description": "Markdown-formatted free-form description of the breeder. Capped at 10000 graphemes (100000 bytes).",
            "maxGraphemes": 10000
          },
          "socialLinks": {
            "type": "array",
            "items": {
              "ref": "#socialLink",
              "type": "ref",
              "description": "A single platform-tagged URL entry."
            },
            "description": "Social-media or external presence links for the breeder."
          }
        }
      },
      "description": "A breeder identity claim describing a cannabis breeder or seed company. Trust is determined by the publisher DID's relationship to the subject (a record published from a handle matching the breeder's domain is treated as the authoritative self-claim); third-party-attributed records are typically displaced when the breeder publishes their own."
    },
    "socialLink": {
      "type": "object",
      "required": [
        "platform",
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "description": "URL to the breeder's profile or content on this platform."
        },
        "platform": {
          "type": "string",
          "description": "Free-form platform identifier, e.g., \"instagram\", \"twitter\", \"youtube\"."
        }
      },
      "description": "A platform-tagged URL pointing to the breeder's profile or presence on an external service."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
