Table of Contents

operationProductType

Description

Abstract class that represents an operation product - a product that has been applied.

Properties

Name Description Required Type
ApplicationRate the rate at which the product is applied No massOrVolumeMeasurementType
SpatialMetric The spatial metric to which the application rate applies e.g., [per] linear metre (MTR) or square metre (MTK) No spatialMeasureType
ApplicationTotal Total quantity (mass or volume depending on the units) of the product applied No massOrVolumeMeasurementType
WaterVolume Total volume of water applied (quantity, units and resolution) No volumeMeasureType
Components array of components in this product mix (can be one) No Array of  componentProductType

Examples

Example 1

{
  "components": [
    {
      "product": {
        "manufacturer": "Fertco Limited",
        "brand": "Ammonium X + Se",
        "form": "Granules",
        "uri": "https://www.fertco.co.nz/products/fertiliser/x-se",
        "matterState": "Solid",
        "activeIngredients": [
          {
            "name": "Urea"
          },
          {
            "name": "Ammonium sulphate"
          }
        ],
        "analysis": [
          {
            "name": "N",
            "percent": 30.248
          },
          {
            "name": "S",
            "percent": 13.731
          }
        ],
        "crop": {
          "name": "Pasture",
          "variety": "Ryegrass White Clover",
          "establishmentDate": "2020-05-01T00:00:00Z"
        }
      }
    }
  ],
  "applicationRate": {
    "measurement": 100,
    "units": "KGM"
  },
  "spatialMetric": {
    "measurement": 1,
    "units": "HAR"
  },
  "applicationTotal": {
    "measurement": 1030,
    "units": "KGM"
  }
}