org.cannadb.breeder

cannadb.org

Documentation

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.

main 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.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Client-declared timestamp when this record was originally created.

description string Optional

Markdown-formatted free-form description of the breeder. Capped at 10000 graphemes (100000 bytes).

maxLength: 100000 bytesmaxGraphemes: 10000 graphemes
founded integer Optional

Year the breeder was founded.

name string Required

Primary common name of the breeder, e.g., "Seed Junky Genetics".

region string Optional

Primary region of operation, e.g., "Humboldt County, California".

website string uri Optional

Informational website URL. No link-rot guarantee — display only.

View raw schema
{
  "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 object

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

Properties

platform string Required

Free-form platform identifier, e.g., "instagram", "twitter", "youtube".

url string uri Required

URL to the breeder's profile or content on this platform.

View raw schema
{
  "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."
}

Lexicon Garden

@