AgStack Foundation · Schema

WeatherDataOut

AgricultureLinux FoundationOpen SourceGeospatialPrecision AgricultureLinked Data

Properties

Name Type Description
id string
spatial_entity object
data object
View JSON Schema on GitHub

JSON Schema

agstack-openagri-weather-service-weatherdataout-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://agstack.org/schemas/WeatherDataOut.json",
  "title": "WeatherDataOut",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "title": "Id"
    },
    "spatial_entity": {
      "$ref": "#/components/schemas/PointOut"
    },
    "data": {
      "type": "object",
      "title": "Data"
    }
  },
  "type": "object",
  "required": [
    "id",
    "spatial_entity",
    "data"
  ]
}