agrio · Schema

Crop

A supported agricultural crop type.

AgriculturePlant DiseasePest DetectionAICrop Advisory

Properties

Name Type Description
id string Unique crop identifier.
common_name string Common name for the crop.
scientific_name string Scientific name for the crop.
View JSON Schema on GitHub

JSON Schema

agrio-crop-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agrio/refs/heads/main/json-schema/agrio-crop-schema.json",
  "title": "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"
    }
  }
}