{ "$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" ] } } }