Agromonitoring · Schema

UvIndexData

UV radiation index for a location.

AgricultureSatellite ImageryVegetation IndicesWeatherPrecision AgricultureRemote Sensing

Properties

Name Type Description
lat number Latitude of the location.
lon number Longitude of the location.
date_iso string Measurement date in ISO 8601 format.
date integer Measurement date as Unix timestamp.
value number UV index value (scale 0-11+).
View JSON Schema on GitHub

JSON Schema

agromonitoring-uvindexdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.agromonitoring.com/schemas/UvIndexData.json",
  "title": "UvIndexData",
  "type": "object",
  "description": "UV radiation index for a location.",
  "properties": {
    "lat": {
      "type": "number",
      "format": "double",
      "description": "Latitude of the location.",
      "example": 38.5
    },
    "lon": {
      "type": "number",
      "format": "double",
      "description": "Longitude of the location.",
      "example": -94.5
    },
    "date_iso": {
      "type": "string",
      "format": "date-time",
      "description": "Measurement date in ISO 8601 format.",
      "example": "2026-04-19T12:00:00Z"
    },
    "date": {
      "type": "integer",
      "description": "Measurement date as Unix timestamp.",
      "example": 1712000000
    },
    "value": {
      "type": "number",
      "format": "double",
      "description": "UV index value (scale 0-11+).",
      "example": 5.2
    }
  }
}