# Normal Bolus (`normal`) ## Quick Summary ## Sub-Type (`subType`) This is the sub-type of bolus event that represents a bolus insulin dose delivered within a matter of seconds or a small number of minutes (depending on the insulin pump and the user's settings). At Tidepool, we follow the common convention of representing normal boluses as point-in-time events since their durations are so short. ## Examples ```json Example (client) { "type": "bolus", "subType": "normal", "normal": 7.75, "expectedNormal": 9.3, "clockDriftOffset": 0, "conversionOffset": 0, "deviceId": "DevId0987654321", "deviceTime": "2018-05-14T18:17:06", "guid": "3645b635-e97a-410b-b866-5ccc8cb98cbf", "id": "622cc9f88a61475f8a1290909ec56e5c", "time": "2018-05-14T08:17:06.676Z", "timezoneOffset": 600, "uploadId": "SampleUploadId" } ``` ```json Example (ingestion) { "type": "bolus", "subType": "normal", "normal": 4.5, "expectedNormal": 5.4, "clockDriftOffset": 0, "conversionOffset": 0, "deviceId": "DevId0987654321", "deviceTime": "2018-05-14T18:17:06", "time": "2018-05-14T08:17:06.676Z", "timezoneOffset": 600, "uploadId": "SampleUploadId" } ``` ```json Example (storage) { "type": "bolus", "subType": "normal", "normal": 8.25, "expectedNormal": 9.9, "_active": true, "_groupId": "abcdef", "_schemaVersion": 0, "_version": 0, "clockDriftOffset": 0, "conversionOffset": 0, "createdTime": "2018-05-14T08:17:11.676Z", "deviceId": "DevId0987654321", "deviceTime": "2018-05-14T18:17:06", "guid": "5f7a9c48-ec16-449c-9597-2cef1f679096", "id": "8480f23a08484c91a7436475ee40c0c6", "time": "2018-05-14T08:17:06.676Z", "timezoneOffset": 600, "uploadId": "SampleUploadId" } ``` ## Keep Reading * [Bolus](/docs/device-data/data-types/bolus) * [Common Fields](/docs/device-data/common-fields) * [Automated Bolus](/docs/device-data/data-types/bolus/automated) * [Combination Bolus](/docs/device-data/data-types/bolus/combination) * [Extended Bolus](/docs/device-data/data-types/bolus/extended) * [Pump Settings](/docs/device-data/data-types/pump-settings) * [Units](/docs/device-data/units)