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.
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 graphemesfounded
integer
Optional
Year the breeder was founded.
logo
blob
Optional
Logo image for the breeder. Accepts common web image formats; capped at 500 KB since logos are typically small icons.
maxSize: 500.0 KBname
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".
socialLinks
array
of
ref
#socialLink
Optional
Social-media or external presence links for the breeder.
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."
}