agrio · JSON Structure

Agrio Crop Structure

A supported agricultural crop type.

Type: object Properties: 3
AgriculturePlant DiseasePest DetectionAICrop Advisory

Crop is a JSON Structure definition published by agrio, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id common_name scientific_name

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agrio/refs/heads/main/json-structure/agrio-crop-structure.json",
  "name": "Crop",
  "description": "A supported agricultural crop type.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique crop identifier.",
      "example": "tomato"
    },
    "common_name": {
      "type": "string",
      "description": "Common name for the crop.",
      "example": "Tomato"
    },
    "scientific_name": {
      "type": "string",
      "description": "Scientific name for the crop.",
      "example": "Solanum lycopersicum"
    }
  }
}