thecartercenter / nemo

NEMO is a mobile data collection and analysis web application.
https://getnemo.org
Apache License 2.0
60 stars 63 forks source link

12494: add new 'meta' section to ODK XML #963

Closed cooperka closed 10 months ago

cooperka commented 10 months ago

to fix ODK Central importing:

Screen Shot 2023-10-18 at 16 40 12

tested and verified working after this change.

per the ODK XForms docs, this section was missing:

<model>
   <instance>
       <data id="asdf" orx:version="123">
           <question1/>
           <question2/>
+          <orx:meta>
+            <orx:instanceID/>
+          </orx:meta>
       </data>
   </instance>
 </model>

note: other meta options include timeStart/timeEnd (automatic timestamps when the form entry was started/ended), deviceID, etc. if we wish to use them in the future.

cooperka commented 10 months ago

fixed specs, remainder are flappers 💯

jpdimond commented 10 months ago

Looks great to me, thanks Kevin!