Schemas / Plant (botanica)
rig.plant.cultivar
v0.31.0 · draft 4 fields 0 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
cultivarEpithet |
string | optional | Cultivar epithet, without quotes |
cultivarGroup |
string | optional | Cultivar Group epithet, without the word Group |
grex |
string | optional | Grex epithet (orchids) |
tradeDesignation |
string | optional | Selling / marketing name |
Cultivated-plant name. Format when present.
Field meanings follow the International Code of Nomenclature for Cultivated Plants (ICNCP) and Darwin Core cultivarEpithet. This schema is those cultivated categories - not a trade mark register and not the botanical taxon.
All fields optional. Emit what the source has; omit empty strings. An empty component is invalid - attach at least one field.
Do not wrap cultivarEpithet in single quotes. The formatted name (Rosa Iceberg 'KORbin') is rig.meta.named. tradeDesignation is not the cultivar - do not copy one into the other.
The species (or genus) the cultigen belongs to is rig.plant.taxon. Set taxon.taxonRank to cultivar, cultivar group, or grex when that is the rank of the name.
JSON Schema
Resolves at https://rig.works/schemas/rig.plant.cultivar.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.plant.cultivar.schema.json",
"title": "rig.plant.cultivar",
"type": "object",
"additionalProperties": false,
"properties": {
"cultivarEpithet": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"cultivarGroup": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"grex": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"tradeDesignation": {
"$ref": "./_defs.schema.json#/$defs/string"
}
},
"description": "Cultivated-plant name. Field meanings follow ICNCP and Darwin Core cultivarEpithet. Epithet without quotes.",
"minProperties": 1
}