Gotcha! Yea so there are a few different ways you might go about this.
One, which @gbathree might be able to help you with, is to create a SurveyStack survey that asks for a standard set of inputs, with a script that packages that up into a standardized “Lab test” log that it sends to each farmOS instance. That will ensure that all the logs end up with the same set of quantities. That would be possible to build without any changes to farmOS itself, but would require that you have all your farmOS instances connected to the SurveyStack Aggregator. Talk to @gbathree about that…
Another option is to write a new farmOS module.
This module could provide a new “Quick Form”, which works very similar to a SurveyStack survey, but lives in farmOS itself.
https://farmos.org/development/module/quick/
Or, the module could provide a custom CSV importer, which expects a CSV with specific headers for the quantities that you want to gather.
There are certainly other ways! You could write a Python script using farmOS.py:
Or a Javascript app using farmOS.js:
I’ll leave it at that… maybe others will have more suggestions.