AgStack Foundation · Schema

SprayForecastResponse

AgricultureLinux FoundationOpen SourceGeospatialPrecision AgricultureLinked Data

Properties

Name Type Description
timestamp string
spray_conditions object
source string
location object
detailed_status object
View JSON Schema on GitHub

JSON Schema

agstack-openagri-weather-service-sprayforecastresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://agstack.org/schemas/SprayForecastResponse.json",
  "title": "SprayForecastResponse",
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "title": "Timestamp"
    },
    "spray_conditions": {
      "$ref": "#/components/schemas/SprayStatus"
    },
    "source": {
      "type": "string",
      "title": "Source"
    },
    "location": {
      "$ref": "#/components/schemas/GeoJSONOut"
    },
    "detailed_status": {
      "additionalProperties": {
        "type": "string"
      },
      "type": "object",
      "title": "Detailed Status"
    }
  },
  "type": "object",
  "required": [
    "timestamp",
    "spray_conditions",
    "source",
    "location",
    "detailed_status"
  ]
}