I'm working on an app dealing with the data exported from Health.app using build in export feature.
In the exported xml some of the records have "recordCount" attribute and I can't figure out what does it mean.
<Record type="HKQuantityTypeIdentifierHeartRate" source="Victor's Apple Watch" unit="count/s" startDate="20150603003800-0700" endDate="20150604003800-0700" min="1.01667" max="1.35" average="1.21111" recordCount="9"/>
<Record type="HKQuantityTypeIdentifierHeartRate" source="Victor's Apple Watch" unit="count/s" startDate="20150604003800-0700" endDate="20150605003800-0700" min="0.766667" max="1.7" average="1.13559" recordCount="37"/>
<Record type="HKQuantityTypeIdentifierHeartRate" source="Victor's Apple Watch" unit="count/s" startDate="20150605003800-0700" endDate="20150606003800-0700" min="1.01667" max="2.3" average="1.41458" recordCount="16"/>
<Record type="HKQuantityTypeIdentifierHeartRate" source="Victor's Apple Watch" unit="count/s" startDate="20150606003800-0700" endDate="20150607003800-0700" min="1.03333" max="1.78333" average="1.2619" recordCount="14"/>
<Record type="HKQuantityTypeIdentifierHeartRate" source="Victor's Apple Watch" unit="count/s" startDate="20150607003800-0700" endDate="20150608003800-0700" min="1.01667" max="1.35" average="1.22222" recordCount="12"/>
<Record type="HKQuantityTypeIdentifierDistanceWalkingRunning" source="Victor's Apple Watch" unit="m" startDate="20150502003800-0700" endDate="20150503003800-0700" value="17209.8" recordCount="398"/>
<Record type="HKQuantityTypeIdentifierDistanceWalkingRunning" source="Victor's Apple Watch" unit="m" startDate="20150503003800-0700" endDate="20150504003800-0700" value="10004.2" recordCount="227"/>
<Record type="HKQuantityTypeIdentifierDistanceWalkingRunning" source="Victor's Apple Watch" unit="m" startDate="20150504003800-0700" endDate="20150505003800-0700" value="4662.04" recordCount="170"/>
<Record type="HKQuantityTypeIdentifierDistanceWalkingRunning" source="Victor's Apple Watch" unit="m" startDate="20150505003800-0700" endDate="20150506003800-0700" value="4201.85" recordCount="126"/>
Could somebody clarify this for me please? Thanks in advance!