Parameter Values Response

Response containing all valid values for a parameter.

AgricultureFederal GovernmentStatisticsOpen DataGeospatial

Properties

Name Type Description
param_values array List of valid values for the requested parameter.
View JSON Schema on GitHub

JSON Schema

quickstats-api-param-values-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agricultural-statistics-service/refs/heads/main/json-schema/quickstats-api-param-values-response-schema.json",
  "title": "Parameter Values Response",
  "description": "Response containing all valid values for a parameter.",
  "type": "object",
  "properties": {
    "param_values": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of valid values for the requested parameter.",
      "example": [
        "CORN",
        "SOYBEANS",
        "WHEAT"
      ]
    }
  }
}