{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/agrio/refs/heads/main/json-schema/agrio-crop-schema.json", "title": "Crop", "description": "A supported agricultural crop type.", "type": "object", "properties": { "id": { "type": "string", "description": "Unique crop identifier.", "example": "tomato" }, "common_name": { "type": "string", "description": "Common name for the crop.", "example": "Tomato" }, "scientific_name": { "type": "string", "description": "Scientific name for the crop.", "example": "Solanum lycopersicum" } } }