{ "version": 1, "title": "Environmental Monitoring", "fields": [ { "id": "site_id", "type": "barcode", "label": "Site ID", "hint": "Scan site marker or enter code manually" }, { "id": "location", "type": "geopoint", "label": "Location", "required": true }, { "id": "observation_date", "type": "date", "label": "Observation Date", "required": true }, { "id": "monitoring_type", "type": "select_one", "label": "Monitoring Type", "required": true, "options": [ {"value": "air_quality", "label": "Air Quality"}, {"value": "soil", "label": "Soil"}, {"value": "vegetation", "label": "Vegetation"}, {"value": "wildlife", "label": "Wildlife"}, {"value": "noise", "label": "Noise"}, {"value": "general", "label": "General / Visual Inspection"} ] }, { "id": "weather", "type": "select_one", "label": "Weather Conditions", "options": [ {"value": "sunny", "label": "Sunny"}, {"value": "cloudy", "label": "Cloudy"}, {"value": "rain", "label": "Raining"}, {"value": "wind", "label": "Windy"}, {"value": "fog", "label": "Foggy"} ] }, { "id": "temperature_c", "type": "number", "label": "Temperature (°C)" }, { "id": "humidity_pct", "type": "number", "label": "Relative Humidity (%)" }, { "id": "anomalies", "type": "select_multiple", "label": "Anomalies Observed", "options": [ {"value": "erosion", "label": "Erosion"}, {"value": "deforestation", "label": "Deforestation"}, {"value": "contamination", "label": "Contamination"}, {"value": "illegal_dumping", "label": "Illegal Dumping"}, {"value": "invasive_species", "label": "Invasive Species"}, {"value": "none", "label": "None"} ] }, { "id": "photo", "type": "photo", "label": "Site Photo" }, { "id": "notes", "type": "textarea", "label": "Field Notes" } ] }