Create Field
sia_create_fieldCreate a field for a farm by providing its name, parent farm UUID, and area UUID. Optionally add a description.
Instructions
Create a new field in the SIA FarmAndFieldService.
A field belongs to a farm and is associated with a geographic area.
Args:
name (string): Field display name
farm_ID (string): UUID of the parent farm
area_ID (string): UUID of the area (geographic boundary) — create with sia_create_area first
description (string, optional): Additional notes about the field
Returns: Created Field object with ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Field display name | |
| area_ID | Yes | UUID of the area (geographic boundary) | |
| farm_ID | Yes | UUID of the parent farm | |
| description | No | Optional notes about the field |