{
"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
}