Climate FieldView · Schema

Climate FieldView Field

Schema representing an agricultural field in the Climate FieldView platform, including its boundary, metadata, and associated agronomic layers.

AgricultureBayerCrop DataField BoundariesHarvestAuthenticationPlantingPrecision Ag

Properties

Name Type Description
id string Unique field identifier
name string Field name as entered by the grower
growerName string Name of the grower who owns this field
farmName string Farm or operation name the field belongs to
acreage number Field area in acres
boundary object Field boundary as a GeoJSON polygon
centroid object Geographic centroid of the field
state string US state abbreviation where the field is located
county string County name where the field is located
createdAt string Field creation timestamp in the platform
updatedAt string Last field modification timestamp
View JSON Schema on GitHub

JSON Schema

climate-fieldview-field-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.climate.com/api/schemas/field",
  "title": "Climate FieldView Field",
  "description": "Schema representing an agricultural field in the Climate FieldView platform, including its boundary, metadata, and associated agronomic layers.",
  "type": "object",
  "required": ["id", "name"],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique field identifier"
    },
    "name": {
      "type": "string",
      "description": "Field name as entered by the grower",
      "maxLength": 255
    },
    "growerName": {
      "type": "string",
      "description": "Name of the grower who owns this field"
    },
    "farmName": {
      "type": "string",
      "description": "Farm or operation name the field belongs to"
    },
    "acreage": {
      "type": "number",
      "format": "double",
      "description": "Field area in acres",
      "minimum": 0
    },
    "boundary": {
      "$ref": "#/$defs/GeoJsonFeature",
      "description": "Field boundary as a GeoJSON polygon"
    },
    "centroid": {
      "$ref": "#/$defs/GeoPoint",
      "description": "Geographic centroid of the field"
    },
    "state": {
      "type": "string",
      "description": "US state abbreviation where the field is located",
      "pattern": "^[A-Z]{2}$"
    },
    "county": {
      "type": "string",
      "description": "County name where the field is located"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Field creation timestamp in the platform"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Last field modification timestamp"
    }
  },
  "$defs": {
    "GeoJsonFeature": {
      "type": "object",
      "required": ["type", "geometry"],
      "properties": {
        "type": {
          "type": "string",
          "const": "Feature"
        },
        "geometry": {
          "oneOf": [
            { "$ref": "#/$defs/Polygon" },
            { "$ref": "#/$defs/MultiPolygon" }
          ]
        },
        "properties": {
          "type": ["object", "null"]
        }
      }
    },
    "Polygon": {
      "type": "object",
      "required": ["type", "coordinates"],
      "properties": {
        "type": {
          "type": "string",
          "const": "Polygon"
        },
        "coordinates": {
          "type": "array",
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/$defs/Position"
            },
            "minItems": 4
          }
        }
      }
    },
    "MultiPolygon": {
      "type": "object",
      "required": ["type", "coordinates"],
      "properties": {
        "type": {
          "type": "string",
          "const": "MultiPolygon"
        },
        "coordinates": {
          "type": "array",
          "items": {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "$ref": "#/$defs/Position"
              }
            }
          }
        }
      }
    },
    "Position": {
      "type": "array",
      "description": "[longitude, latitude] coordinate pair",
      "minItems": 2,
      "maxItems": 3,
      "items": {
        "type": "number"
      }
    },
    "GeoPoint": {
      "type": "object",
      "required": ["latitude", "longitude"],
      "properties": {
        "latitude": {
          "type": "number",
          "format": "double",
          "minimum": -90,
          "maximum": 90
        },
        "longitude": {
          "type": "number",
          "format": "double",
          "minimum": -180,
          "maximum": 180
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/climate-fieldview-field"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.