Table of Contents

cropType

Description

Defines a managed crop, or a species in a mixed sward (or even potentially a weed species).

Properties

Name Description Required Type
Name The human-readable name of the crop or species. No string
TaxonomicName Taxonomic name of the species. Developers should check this against official databases or taxonomic registers. No string
Variety Recognised plant variety. No string
Identifiers A list of official identifiers of different sorts, idenfified by scheme and id. No Array of  identifierType
EstablishmentDate The establishment date of the crop or species if known. No date-time
MaturityDate The target or actual maturity date of the crop or species if known. No date-time
HarvestDate The target or actual harvest date of the crop or species if known. Most useful for historic reference. No date-time

Examples

Example 1

{
  "name": "Maize",
  "taxonomicName": "Zea mays",
  "variety": "Jason J4956",
  "identifiers": [
    {
      "id": "J4956",
      "scheme": "nz.jason.maize"
    }
  ],
  "establishmentDate": "2022-08-03T00:00:00Z",
  "maturityDate": "2023-03-03T00:00:00Z",
  "harvestDate": "2023-03-14T00:00:00Z"
}

Example 2

{
  "name": "Barley",
  "taxonomicName": "Hordeum vulgare",
  "variety": "Winter wonder",
  "identifiers": [
    {
      "id": "J897",
      "scheme": "nz.jason.barley"
    }
  ],
  "establishmentDate": "2023-03-27T00:00:00Z",
  "maturityDate": "2023-10-24T00:00:00Z",
  "harvestDate": "2023-11-02T00:00:00Z"
}