Schema: Plant
Schema Definition
{
"$schema": "http://json-schema.org/schema#",
"properties": {
"id": {
"description": "Unique Plant Identifier",
"type": "string"
},
"name": {
"description": "Free-form Name of the plant, many times just the Variety",
"type": "string"
},
"variety": {
"$ref": "#/components/schemas/Variety",
"type": "object"
}
},
"type": "object"
}