Create Crop Zone
sia_create_crop_zoneCreate a crop zone by linking a field, area, crop, variety, and season to manage agricultural planting records.
Instructions
Create a new crop zone in the SIA CropZoneService.
A crop zone links a field, area, crop, variety, and season together.
Args:
name (string): Display name
field_ID (string): UUID of the parent field
area_ID (string): UUID of the crop zone's area
crop_ID (string): UUID of the crop type
variety_ID (string): UUID of the crop variety
season_ID (string): UUID of the agricultural season
isFallow (boolean): Whether the zone is left fallow (default: false)
isClosed (boolean): Whether the zone is closed (default: false)
perennial_ID (string, optional): UUID of associated perennial
cropPurpose_ID (string, optional): UUID of crop purpose
productionType_ID (string, optional): UUID of production type
description (string, optional): Free-text notes
Returns: Created CropZone object with ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Display name for the crop zone | |
| area_ID | Yes | UUID of the area | |
| crop_ID | Yes | UUID of the crop type | |
| field_ID | Yes | UUID of the parent field | |
| isClosed | No | ||
| isFallow | No | ||
| season_ID | Yes | UUID of the agricultural season | |
| variety_ID | Yes | UUID of the crop variety | |
| description | No | Free-text notes | |
| perennial_ID | No | UUID of associated perennial plant | |
| cropPurpose_ID | No | UUID of crop purpose | |
| productionType_ID | No | UUID of production type |