@stoplight/ui-kit 3.0.0-beta.9 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2353) hide show
  1. package/.circleci/config.yml +46 -0
  2. package/.eslintignore +8 -0
  3. package/.eslintrc.js +3 -0
  4. package/.github/CODEOWNERS +7 -0
  5. package/.gitignore +34 -0
  6. package/.nvmrc +1 -0
  7. package/.prettierrc.js +3 -0
  8. package/.storybook/addons.js +1 -0
  9. package/.storybook/config.js +3 -0
  10. package/.storybook/preview-head.html +3 -0
  11. package/.storybook/webpack.config.js +23 -0
  12. package/.yarnrc +1 -0
  13. package/README.md +25 -0
  14. package/__mocks__/react.js +9 -0
  15. package/__mocks__/styleMock.js +1 -0
  16. package/coverage/clover.xml +376 -0
  17. package/coverage/coverage-final.json +16 -0
  18. package/coverage/lcov-report/base.css +224 -0
  19. package/coverage/lcov-report/block-navigation.js +79 -0
  20. package/coverage/lcov-report/index.html +200 -0
  21. package/coverage/lcov-report/prettify.css +1 -0
  22. package/coverage/lcov-report/prettify.js +2 -0
  23. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  24. package/coverage/lcov-report/sorter.js +170 -0
  25. package/coverage/lcov-report/src/CodeEditor/utils/highlightCode.ts.html +250 -0
  26. package/coverage/lcov-report/src/CodeEditor/utils/index.html +110 -0
  27. package/coverage/lcov-report/src/CodeViewer/utils/astToReact.ts.html +154 -0
  28. package/coverage/lcov-report/src/CodeViewer/utils/index.html +140 -0
  29. package/coverage/lcov-report/src/CodeViewer/utils/lineNumberify.ts.html +436 -0
  30. package/coverage/lcov-report/src/CodeViewer/utils/parseCode.ts.html +283 -0
  31. package/coverage/lcov-report/src/Dropdown/Dropdown.tsx.html +319 -0
  32. package/coverage/lcov-report/src/Dropdown/index.html +110 -0
  33. package/coverage/lcov-report/src/SimpleTabs/Tab.tsx.html +148 -0
  34. package/coverage/lcov-report/src/SimpleTabs/TabList.tsx.html +139 -0
  35. package/coverage/lcov-report/src/SimpleTabs/TabPanel.tsx.html +163 -0
  36. package/coverage/lcov-report/src/SimpleTabs/index.html +140 -0
  37. package/coverage/lcov-report/src/__fixtures__/table-of-contents/index.html +110 -0
  38. package/coverage/lcov-report/src/__fixtures__/table-of-contents/studio.ts.html +259 -0
  39. package/coverage/lcov-report/src/_hooks/index.html +125 -0
  40. package/coverage/lcov-report/src/_hooks/useIsMobile.ts.html +169 -0
  41. package/coverage/lcov-report/src/_hooks/useValidateSchema.ts.html +169 -0
  42. package/coverage/lcov-report/src/classes.ts.html +142 -0
  43. package/coverage/lcov-report/src/colors.ts.html +322 -0
  44. package/coverage/lcov-report/src/globals.d.ts.html +82 -0
  45. package/coverage/lcov-report/src/index.html +155 -0
  46. package/coverage/lcov-report/src/withErrorBoundary.tsx.html +262 -0
  47. package/coverage/lcov.info +601 -0
  48. package/dist/AutoSizer/index.js +7 -0
  49. package/dist/AutoSizer/index.js.map +1 -0
  50. package/dist/CodeEditor/index.d.ts +14 -0
  51. package/dist/CodeEditor/index.js +23 -0
  52. package/dist/CodeEditor/index.js.map +1 -0
  53. package/dist/CodeEditor/utils/highlightCode.js +55 -0
  54. package/dist/CodeEditor/utils/highlightCode.js.map +1 -0
  55. package/dist/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.d.ts +8 -0
  56. package/dist/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.js +51 -0
  57. package/dist/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.js.map +1 -0
  58. package/dist/CodeViewer/components/BlockCodeViewer/ObservableSet.d.ts +5 -0
  59. package/dist/CodeViewer/components/BlockCodeViewer/ObservableSet.js +24 -0
  60. package/dist/CodeViewer/components/BlockCodeViewer/ObservableSet.js.map +1 -0
  61. package/dist/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.d.ts +12 -0
  62. package/dist/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.js +59 -0
  63. package/dist/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.js.map +1 -0
  64. package/dist/CodeViewer/components/BlockCodeViewer/consts.d.ts +1 -0
  65. package/dist/CodeViewer/components/BlockCodeViewer/consts.js +4 -0
  66. package/dist/CodeViewer/components/BlockCodeViewer/consts.js.map +1 -0
  67. package/dist/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.d.ts +7 -0
  68. package/dist/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.js +29 -0
  69. package/dist/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.js.map +1 -0
  70. package/dist/CodeViewer/components/BlockCodeViewer/index.d.ts +2 -0
  71. package/dist/CodeViewer/components/BlockCodeViewer/index.js +5 -0
  72. package/dist/CodeViewer/components/BlockCodeViewer/index.js.map +1 -0
  73. package/dist/CodeViewer/components/InlineCodeViewer.d.ts +5 -0
  74. package/dist/CodeViewer/components/InlineCodeViewer.js +11 -0
  75. package/dist/CodeViewer/components/InlineCodeViewer.js.map +1 -0
  76. package/dist/CodeViewer/index.d.ts +9 -0
  77. package/dist/CodeViewer/index.js +19 -0
  78. package/dist/CodeViewer/index.js.map +1 -0
  79. package/dist/CodeViewer/utils/astToReact.d.ts +3 -0
  80. package/dist/CodeViewer/utils/astToReact.js +16 -0
  81. package/dist/CodeViewer/utils/astToReact.js.map +1 -0
  82. package/dist/CodeViewer/utils/lineNumberify.d.ts +2 -0
  83. package/dist/CodeViewer/utils/lineNumberify.js +94 -0
  84. package/dist/CodeViewer/utils/lineNumberify.js.map +1 -0
  85. package/dist/CodeViewer/utils/parseCode.d.ts +2 -0
  86. package/dist/CodeViewer/utils/parseCode.js +58 -0
  87. package/dist/CodeViewer/utils/parseCode.js.map +1 -0
  88. package/dist/Dropdown/Dropdown.js +28 -0
  89. package/dist/Dropdown/Dropdown.js.map +1 -0
  90. package/dist/FAIcon/index.js +37 -0
  91. package/dist/FAIcon/index.js.map +1 -0
  92. package/dist/FormButton/index.js +13 -0
  93. package/dist/FormButton/index.js.map +1 -0
  94. package/dist/FormError/index.js +23 -0
  95. package/dist/FormError/index.js.map +1 -0
  96. package/dist/FormInput/index.js +44 -0
  97. package/dist/FormInput/index.js.map +1 -0
  98. package/dist/LICENSE +190 -0
  99. package/dist/README.md +168 -0
  100. package/dist/ScrollContainer/index.js +91 -0
  101. package/dist/ScrollContainer/index.js.map +1 -0
  102. package/dist/ScrollList/index.js +42 -0
  103. package/dist/ScrollList/index.js.map +1 -0
  104. package/dist/SecretInput/index.js +22 -0
  105. package/dist/SecretInput/index.js.map +1 -0
  106. package/dist/SimpleTabs/Tab.js +14 -0
  107. package/dist/SimpleTabs/Tab.js.map +1 -0
  108. package/dist/SimpleTabs/TabList.js +14 -0
  109. package/dist/SimpleTabs/TabList.js.map +1 -0
  110. package/dist/SimpleTabs/TabPanel.js +14 -0
  111. package/dist/SimpleTabs/TabPanel.js.map +1 -0
  112. package/dist/TableOfContents/index.d.ts +70 -0
  113. package/dist/TableOfContents/index.js +194 -0
  114. package/dist/TableOfContents/index.js.map +1 -0
  115. package/dist/ThemeContainer/index.js +12 -0
  116. package/dist/ThemeContainer/index.js.map +1 -0
  117. package/dist/_hooks/useIsMobile.js +24 -0
  118. package/dist/_hooks/useIsMobile.js.map +1 -0
  119. package/dist/_hooks/useValidateSchema.js +27 -0
  120. package/dist/_hooks/useValidateSchema.js.map +1 -0
  121. package/dist/classes.d.ts +224 -0
  122. package/dist/classes.js +6 -0
  123. package/dist/classes.js.map +1 -0
  124. package/dist/index.d.ts +14 -0
  125. package/dist/index.js +19 -0
  126. package/dist/index.js.map +1 -0
  127. package/dist/package.json +46 -0
  128. package/dist/styles/_blueprint.scss +16 -0
  129. package/dist/styles/_components.scss +9 -0
  130. package/dist/styles/blueprint/_variables.scss +124 -0
  131. package/dist/styles/blueprint/select/blueprint-select.scss +8 -0
  132. package/dist/styles/blueprint/select/components/_index.scss +6 -0
  133. package/dist/styles/blueprint/select/components/omnibar/_omnibar.scss +63 -0
  134. package/dist/styles/blueprint/select/components/select/_multi-select.scss +17 -0
  135. package/dist/styles/blueprint/select/components/select/_select.scss +31 -0
  136. package/dist/styles/blueprint/src/_reset.scss +43 -0
  137. package/dist/styles/blueprint/src/_typography.scss +459 -0
  138. package/dist/styles/blueprint/src/accessibility/_focus-states.scss +17 -0
  139. package/dist/styles/blueprint/src/blueprint-hi-contrast.scss +22 -0
  140. package/dist/styles/blueprint/src/blueprint.scss +16 -0
  141. package/dist/styles/blueprint/src/common/_color-aliases.scss +43 -0
  142. package/dist/styles/blueprint/src/common/_colors.scss +116 -0
  143. package/dist/styles/blueprint/src/common/_flex.scss +49 -0
  144. package/dist/styles/blueprint/src/common/_mixins.scss +128 -0
  145. package/dist/styles/blueprint/src/common/_react-transition.scss +117 -0
  146. package/dist/styles/blueprint/src/common/_variables.scss +131 -0
  147. package/dist/styles/blueprint/src/components/_index.scss +38 -0
  148. package/dist/styles/blueprint/src/components/alert/_alert.scss +33 -0
  149. package/dist/styles/blueprint/src/components/breadcrumbs/_breadcrumbs.scss +142 -0
  150. package/dist/styles/blueprint/src/components/button/_button-group.scss +240 -0
  151. package/dist/styles/blueprint/src/components/button/_button.scss +206 -0
  152. package/dist/styles/blueprint/src/components/button/_common.scss +507 -0
  153. package/dist/styles/blueprint/src/components/callout/_callout.scss +99 -0
  154. package/dist/styles/blueprint/src/components/card/_card.scss +91 -0
  155. package/dist/styles/blueprint/src/components/collapse/_collapse.scss +20 -0
  156. package/dist/styles/blueprint/src/components/context-menu/_context-menu.scss +10 -0
  157. package/dist/styles/blueprint/src/components/dialog/_dialog.scss +146 -0
  158. package/dist/styles/blueprint/src/components/divider/_divider.scss +19 -0
  159. package/dist/styles/blueprint/src/components/drawer/_drawer.scss +232 -0
  160. package/dist/styles/blueprint/src/components/editable-text/_editable-text.scss +156 -0
  161. package/dist/styles/blueprint/src/components/forms/_common.scss +239 -0
  162. package/dist/styles/blueprint/src/components/forms/_control-group.scss +276 -0
  163. package/dist/styles/blueprint/src/components/forms/_controls.scss +526 -0
  164. package/dist/styles/blueprint/src/components/forms/_file-input.scss +155 -0
  165. package/dist/styles/blueprint/src/components/forms/_form-group.scss +111 -0
  166. package/dist/styles/blueprint/src/components/forms/_index.scss +20 -0
  167. package/dist/styles/blueprint/src/components/forms/_input-group.scss +247 -0
  168. package/dist/styles/blueprint/src/components/forms/_input.scss +115 -0
  169. package/dist/styles/blueprint/src/components/forms/_label.scss +114 -0
  170. package/dist/styles/blueprint/src/components/forms/_numeric-input.scss +40 -0
  171. package/dist/styles/blueprint/src/components/hotkeys/_hotkeys.scss +50 -0
  172. package/dist/styles/blueprint/src/components/html-select/_common.scss +52 -0
  173. package/dist/styles/blueprint/src/components/html-select/_html-select.scss +104 -0
  174. package/dist/styles/blueprint/src/components/html-table/_html-table.scss +208 -0
  175. package/dist/styles/blueprint/src/components/icon/_icon.scss +79 -0
  176. package/dist/styles/blueprint/src/components/menu/_common.scss +172 -0
  177. package/dist/styles/blueprint/src/components/menu/_menu.scss +197 -0
  178. package/dist/styles/blueprint/src/components/menu/_submenu.scss +41 -0
  179. package/dist/styles/blueprint/src/components/navbar/_navbar.scss +117 -0
  180. package/dist/styles/blueprint/src/components/non-ideal-state/_non-ideal-state.scss +43 -0
  181. package/dist/styles/blueprint/src/components/overflow-list/_overflow-list.scss +13 -0
  182. package/dist/styles/blueprint/src/components/overlay/_overlay.scss +94 -0
  183. package/dist/styles/blueprint/src/components/panel-stack/_panel-stack.scss +103 -0
  184. package/dist/styles/blueprint/src/components/popover/_common.scss +171 -0
  185. package/dist/styles/blueprint/src/components/popover/_popover.scss +127 -0
  186. package/dist/styles/blueprint/src/components/portal/_portal.scss +15 -0
  187. package/dist/styles/blueprint/src/components/progress-bar/_common.scss +9 -0
  188. package/dist/styles/blueprint/src/components/progress-bar/_progress-bar.scss +98 -0
  189. package/dist/styles/blueprint/src/components/skeleton/_common.scss +8 -0
  190. package/dist/styles/blueprint/src/components/skeleton/_skeleton.scss +64 -0
  191. package/dist/styles/blueprint/src/components/slider/_common.scss +48 -0
  192. package/dist/styles/blueprint/src/components/slider/_slider.scss +216 -0
  193. package/dist/styles/blueprint/src/components/spinner/_spinner.scss +65 -0
  194. package/dist/styles/blueprint/src/components/tabs/_tabs.scss +199 -0
  195. package/dist/styles/blueprint/src/components/tag/_common.scss +202 -0
  196. package/dist/styles/blueprint/src/components/tag/_tag.scss +75 -0
  197. package/dist/styles/blueprint/src/components/tag-input/_tag-input.scss +165 -0
  198. package/dist/styles/blueprint/src/components/toast/_toast.scss +203 -0
  199. package/dist/styles/blueprint/src/components/tooltip/_common.scss +11 -0
  200. package/dist/styles/blueprint/src/components/tooltip/_tooltip.scss +61 -0
  201. package/dist/styles/blueprint/src/components/tree/_tree.scss +194 -0
  202. package/dist/styles/components/Code/_base.scss +252 -0
  203. package/dist/styles/components/TableOfContents/_base.scss +50 -0
  204. package/dist/styles/tailwind/_base.scss +56165 -0
  205. package/dist/styles/tailwind/tailwind.config.js +412 -0
  206. package/jest.config.js +10 -0
  207. package/package.json +150 -14
  208. package/scripts/build-tailwind/postcss.config.js +9 -0
  209. package/scripts/build-tailwind/tailwind.css +10 -0
  210. package/setupTests.ts +18 -0
  211. package/src/AutoSizer/index.tsx +8 -0
  212. package/src/CodeEditor/__tests__/Editor.spec.tsx +30 -0
  213. package/src/CodeEditor/index.tsx +69 -0
  214. package/src/CodeEditor/utils/highlightCode.ts +59 -0
  215. package/src/CodeViewer/__tests__/Viewer.spec.tsx +83 -0
  216. package/src/CodeViewer/components/BlockCodeViewer/BlockCodeViewer.tsx +84 -0
  217. package/src/CodeViewer/components/BlockCodeViewer/ObservableSet.ts +19 -0
  218. package/src/CodeViewer/components/BlockCodeViewer/SingleCodeBlock.tsx +91 -0
  219. package/src/CodeViewer/components/BlockCodeViewer/consts.ts +1 -0
  220. package/src/CodeViewer/components/BlockCodeViewer/hooks/useSlicedBlocks.ts +37 -0
  221. package/src/CodeViewer/components/BlockCodeViewer/index.tsx +2 -0
  222. package/src/CodeViewer/components/InlineCodeViewer.tsx +16 -0
  223. package/src/CodeViewer/index.tsx +39 -0
  224. package/src/CodeViewer/utils/__tests__/__snapshots__/astToReact.spec.ts.snap +118 -0
  225. package/src/CodeViewer/utils/__tests__/__snapshots__/lineNumberify.spec.ts.snap +254 -0
  226. package/src/CodeViewer/utils/__tests__/astToReact.spec.ts +13 -0
  227. package/src/CodeViewer/utils/__tests__/fixtures/clike.json +170 -0
  228. package/src/CodeViewer/utils/__tests__/fixtures/javascript.json +122 -0
  229. package/src/CodeViewer/utils/__tests__/fixtures/multiple-lines.json +54 -0
  230. package/src/CodeViewer/utils/__tests__/fixtures/one-liner.json +66 -0
  231. package/src/CodeViewer/utils/__tests__/lineNumberify.spec.ts +15 -0
  232. package/src/CodeViewer/utils/__tests__/parseCode.spec.ts +87 -0
  233. package/src/CodeViewer/utils/astToReact.ts +25 -0
  234. package/src/CodeViewer/utils/lineNumberify.ts +120 -0
  235. package/src/CodeViewer/utils/parseCode.ts +58 -0
  236. package/src/Dropdown/Dropdown.tsx +80 -0
  237. package/src/FAIcon/index.tsx +54 -0
  238. package/src/FormButton/index.tsx +31 -0
  239. package/src/FormError/index.tsx +45 -0
  240. package/src/FormInput/index.tsx +135 -0
  241. package/src/Icons/index.ts +2 -0
  242. package/src/ScrollContainer/__tests__/ScrollContainer.spec.tsx +87 -0
  243. package/src/ScrollContainer/index.tsx +163 -0
  244. package/src/ScrollList/index.tsx +132 -0
  245. package/src/SecretInput/index.tsx +38 -0
  246. package/src/Select/index.ts +1 -0
  247. package/src/SimpleTabs/Tab.tsx +24 -0
  248. package/src/SimpleTabs/TabList.tsx +20 -0
  249. package/src/SimpleTabs/TabPanel.tsx +29 -0
  250. package/src/SimpleTabs/index.tsx +6 -0
  251. package/src/TableOfContents/index.tsx +414 -0
  252. package/src/ThemeContainer/index.tsx +24 -0
  253. package/src/__fixtures__/CodeViewer/ember.json +1 -0
  254. package/src/__fixtures__/table-of-contents/studio.ts +161 -0
  255. package/src/__fixtures__/table-of-contents/tree.ts +56 -0
  256. package/src/__stories__/AutoSizer/index.tsx +19 -0
  257. package/src/__stories__/Checkbox/index.tsx +13 -0
  258. package/src/__stories__/Code/CodeEditor.tsx +49 -0
  259. package/src/__stories__/Code/CodeViewer.tsx +52 -0
  260. package/src/__stories__/Code/index.ts +2 -0
  261. package/src/__stories__/Docs/Classes.tsx +168 -0
  262. package/src/__stories__/Docs/Namespaces.tsx +55 -0
  263. package/src/__stories__/Docs/Theme.tsx +32 -0
  264. package/src/__stories__/Docs/_theme-namespace.scss +20 -0
  265. package/src/__stories__/Docs/_theme-overwrite.scss +9 -0
  266. package/src/__stories__/Docs/index.tsx +10 -0
  267. package/src/__stories__/Dropdown/index.tsx +28 -0
  268. package/src/__stories__/FormButton/index.tsx +55 -0
  269. package/src/__stories__/FormInput/index.tsx +43 -0
  270. package/src/__stories__/ScrollContainer/index.tsx +114 -0
  271. package/src/__stories__/ScrollList/index.tsx +72 -0
  272. package/src/__stories__/SecretInput/index.tsx +41 -0
  273. package/src/__stories__/SimpleTabs/index.tsx +57 -0
  274. package/src/__stories__/TableOfContents/index.tsx +151 -0
  275. package/src/__stories__/Toaster/index.tsx +46 -0
  276. package/src/__stories__/index.ts +13 -0
  277. package/src/_hooks/useIsMobile.ts +26 -0
  278. package/src/_hooks/useValidateSchema.ts +34 -0
  279. package/src/classes.ts +21 -0
  280. package/src/colors.ts +81 -0
  281. package/src/index.ts +46 -0
  282. package/src/styles/_blueprint.scss +16 -0
  283. package/src/styles/_components.scss +9 -0
  284. package/src/styles/_monaco.scss +13 -0
  285. package/src/styles/_tailwind.scss +1 -0
  286. package/src/styles/_ui-kit.scss +117 -0
  287. package/src/styles/blueprint/_color-aliases.scss +43 -0
  288. package/src/styles/blueprint/_colors.scss +115 -0
  289. package/src/styles/blueprint/_variables.scss +124 -0
  290. package/src/styles/blueprint/select/blueprint-select.scss +8 -0
  291. package/src/styles/blueprint/select/components/_index.scss +6 -0
  292. package/src/styles/blueprint/select/components/omnibar/_omnibar.scss +63 -0
  293. package/src/styles/blueprint/select/components/select/_multi-select.scss +17 -0
  294. package/src/styles/blueprint/select/components/select/_select.scss +31 -0
  295. package/src/styles/blueprint/src/_reset.scss +43 -0
  296. package/src/styles/blueprint/src/_typography.scss +459 -0
  297. package/src/styles/blueprint/src/accessibility/_focus-states.scss +17 -0
  298. package/src/styles/blueprint/src/blueprint-hi-contrast.scss +22 -0
  299. package/src/styles/blueprint/src/blueprint.scss +16 -0
  300. package/src/styles/blueprint/src/common/_color-aliases.scss +43 -0
  301. package/src/styles/blueprint/src/common/_colors.scss +116 -0
  302. package/src/styles/blueprint/src/common/_flex.scss +49 -0
  303. package/src/styles/blueprint/src/common/_mixins.scss +128 -0
  304. package/src/styles/blueprint/src/common/_react-transition.scss +117 -0
  305. package/src/styles/blueprint/src/common/_variables.scss +131 -0
  306. package/src/styles/blueprint/src/components/_index.scss +38 -0
  307. package/src/styles/blueprint/src/components/alert/_alert.scss +33 -0
  308. package/src/styles/blueprint/src/components/breadcrumbs/_breadcrumbs.scss +142 -0
  309. package/src/styles/blueprint/src/components/button/_button-group.scss +240 -0
  310. package/src/styles/blueprint/src/components/button/_button.scss +206 -0
  311. package/src/styles/blueprint/src/components/button/_common.scss +507 -0
  312. package/src/styles/blueprint/src/components/callout/_callout.scss +99 -0
  313. package/src/styles/blueprint/src/components/card/_card.scss +91 -0
  314. package/src/styles/blueprint/src/components/collapse/_collapse.scss +20 -0
  315. package/src/styles/blueprint/src/components/context-menu/_context-menu.scss +10 -0
  316. package/src/styles/blueprint/src/components/dialog/_dialog.scss +146 -0
  317. package/src/styles/blueprint/src/components/divider/_divider.scss +19 -0
  318. package/src/styles/blueprint/src/components/drawer/_drawer.scss +232 -0
  319. package/src/styles/blueprint/src/components/editable-text/_editable-text.scss +156 -0
  320. package/src/styles/blueprint/src/components/forms/_common.scss +239 -0
  321. package/src/styles/blueprint/src/components/forms/_control-group.scss +276 -0
  322. package/src/styles/blueprint/src/components/forms/_controls.scss +526 -0
  323. package/src/styles/blueprint/src/components/forms/_file-input.scss +155 -0
  324. package/src/styles/blueprint/src/components/forms/_form-group.scss +111 -0
  325. package/src/styles/blueprint/src/components/forms/_index.scss +20 -0
  326. package/src/styles/blueprint/src/components/forms/_input-group.scss +247 -0
  327. package/src/styles/blueprint/src/components/forms/_input.scss +115 -0
  328. package/src/styles/blueprint/src/components/forms/_label.scss +114 -0
  329. package/src/styles/blueprint/src/components/forms/_numeric-input.scss +40 -0
  330. package/src/styles/blueprint/src/components/hotkeys/_hotkeys.scss +50 -0
  331. package/src/styles/blueprint/src/components/html-select/_common.scss +52 -0
  332. package/src/styles/blueprint/src/components/html-select/_html-select.scss +104 -0
  333. package/src/styles/blueprint/src/components/html-table/_html-table.scss +208 -0
  334. package/src/styles/blueprint/src/components/icon/_icon.scss +79 -0
  335. package/src/styles/blueprint/src/components/menu/_common.scss +172 -0
  336. package/src/styles/blueprint/src/components/menu/_menu.scss +197 -0
  337. package/src/styles/blueprint/src/components/menu/_submenu.scss +41 -0
  338. package/src/styles/blueprint/src/components/navbar/_navbar.scss +117 -0
  339. package/src/styles/blueprint/src/components/non-ideal-state/_non-ideal-state.scss +43 -0
  340. package/src/styles/blueprint/src/components/overflow-list/_overflow-list.scss +13 -0
  341. package/src/styles/blueprint/src/components/overlay/_overlay.scss +94 -0
  342. package/src/styles/blueprint/src/components/panel-stack/_panel-stack.scss +103 -0
  343. package/src/styles/blueprint/src/components/popover/_common.scss +171 -0
  344. package/src/styles/blueprint/src/components/popover/_popover.scss +127 -0
  345. package/src/styles/blueprint/src/components/portal/_portal.scss +15 -0
  346. package/src/styles/blueprint/src/components/progress-bar/_common.scss +9 -0
  347. package/src/styles/blueprint/src/components/progress-bar/_progress-bar.scss +98 -0
  348. package/src/styles/blueprint/src/components/skeleton/_common.scss +8 -0
  349. package/src/styles/blueprint/src/components/skeleton/_skeleton.scss +64 -0
  350. package/src/styles/blueprint/src/components/slider/_common.scss +48 -0
  351. package/src/styles/blueprint/src/components/slider/_slider.scss +216 -0
  352. package/src/styles/blueprint/src/components/spinner/_spinner.scss +65 -0
  353. package/src/styles/blueprint/src/components/tabs/_tabs.scss +199 -0
  354. package/src/styles/blueprint/src/components/tag/_common.scss +202 -0
  355. package/src/styles/blueprint/src/components/tag/_tag.scss +75 -0
  356. package/src/styles/blueprint/src/components/tag-input/_tag-input.scss +165 -0
  357. package/src/styles/blueprint/src/components/toast/_toast.scss +203 -0
  358. package/src/styles/blueprint/src/components/tooltip/_common.scss +11 -0
  359. package/src/styles/blueprint/src/components/tooltip/_tooltip.scss +61 -0
  360. package/src/styles/blueprint/src/components/tree/_tree.scss +194 -0
  361. package/src/styles/common/_css-variables.scss +41 -0
  362. package/src/styles/common/_theme.scss +143 -0
  363. package/src/styles/common/_utils.scss +58 -0
  364. package/src/styles/common/_variables.scss +117 -0
  365. package/src/styles/components/Code/_base.scss +252 -0
  366. package/src/styles/components/Code/_theme-dark.scss +35 -0
  367. package/src/styles/components/Code/_theme-light.scss +35 -0
  368. package/src/styles/components/Dialog/_base.scss +9 -0
  369. package/src/styles/components/Dropdown/_base.scss +12 -0
  370. package/src/styles/components/FormGroup/_base.scss +5 -0
  371. package/src/styles/components/ScrollContainer/_base.scss +13 -0
  372. package/src/styles/components/SimpleTabs/_base.scss +115 -0
  373. package/src/styles/components/TableOfContents/_base.scss +50 -0
  374. package/src/styles/components/_base.scss +7 -0
  375. package/src/styles/fonts/icons-16.eot +0 -0
  376. package/src/styles/fonts/icons-16.ttf +0 -0
  377. package/src/styles/fonts/icons-16.woff +0 -0
  378. package/src/styles/fonts/icons-20.eot +0 -0
  379. package/src/styles/fonts/icons-20.ttf +0 -0
  380. package/src/styles/fonts/icons-20.woff +0 -0
  381. package/src/styles/fonts/icons.json +3236 -0
  382. package/src/styles/icons/16px/add-column-left.svg +12 -0
  383. package/src/styles/icons/16px/add-column-right.svg +12 -0
  384. package/src/styles/icons/16px/add-row-bottom.svg +12 -0
  385. package/src/styles/icons/16px/add-row-top.svg +12 -0
  386. package/src/styles/icons/16px/add-to-artifact.svg +15 -0
  387. package/src/styles/icons/16px/add-to-folder.svg +10 -0
  388. package/src/styles/icons/16px/add.svg +13 -0
  389. package/src/styles/icons/16px/airplane.svg +11 -0
  390. package/src/styles/icons/16px/align-center.svg +15 -0
  391. package/src/styles/icons/16px/align-justify.svg +15 -0
  392. package/src/styles/icons/16px/align-left.svg +15 -0
  393. package/src/styles/icons/16px/align-right.svg +15 -0
  394. package/src/styles/icons/16px/alignment-bottom.svg +12 -0
  395. package/src/styles/icons/16px/alignment-horizontal-center.svg +12 -0
  396. package/src/styles/icons/16px/alignment-left.svg +12 -0
  397. package/src/styles/icons/16px/alignment-right.svg +12 -0
  398. package/src/styles/icons/16px/alignment-top.svg +12 -0
  399. package/src/styles/icons/16px/alignment-vertical-center.svg +12 -0
  400. package/src/styles/icons/16px/annotation.svg +12 -0
  401. package/src/styles/icons/16px/application.svg +13 -0
  402. package/src/styles/icons/16px/applications.svg +15 -0
  403. package/src/styles/icons/16px/arrow-bottom-left.svg +12 -0
  404. package/src/styles/icons/16px/arrow-bottom-right.svg +12 -0
  405. package/src/styles/icons/16px/arrow-down.svg +16 -0
  406. package/src/styles/icons/16px/arrow-left.svg +13 -0
  407. package/src/styles/icons/16px/arrow-right.svg +13 -0
  408. package/src/styles/icons/16px/arrow-top-left.svg +12 -0
  409. package/src/styles/icons/16px/arrow-top-right.svg +12 -0
  410. package/src/styles/icons/16px/arrow-up.svg +16 -0
  411. package/src/styles/icons/16px/arrows-horizontal.svg +17 -0
  412. package/src/styles/icons/16px/arrows-vertical.svg +17 -0
  413. package/src/styles/icons/16px/asterisk.svg +14 -0
  414. package/src/styles/icons/16px/automatic-updates.svg +17 -0
  415. package/src/styles/icons/16px/badge.svg +13 -0
  416. package/src/styles/icons/16px/ban-circle.svg +11 -0
  417. package/src/styles/icons/16px/bank-account.svg +19 -0
  418. package/src/styles/icons/16px/barcode.svg +12 -0
  419. package/src/styles/icons/16px/blank.svg +5 -0
  420. package/src/styles/icons/16px/blocked-person.svg +19 -0
  421. package/src/styles/icons/16px/bold.svg +12 -0
  422. package/src/styles/icons/16px/book.svg +11 -0
  423. package/src/styles/icons/16px/bookmark.svg +13 -0
  424. package/src/styles/icons/16px/box.svg +13 -0
  425. package/src/styles/icons/16px/briefcase.svg +13 -0
  426. package/src/styles/icons/16px/build.svg +13 -0
  427. package/src/styles/icons/16px/calculator.svg +12 -0
  428. package/src/styles/icons/16px/calendar.svg +10 -0
  429. package/src/styles/icons/16px/camera.svg +13 -0
  430. package/src/styles/icons/16px/caret-down.svg +13 -0
  431. package/src/styles/icons/16px/caret-left.svg +12 -0
  432. package/src/styles/icons/16px/caret-right.svg +12 -0
  433. package/src/styles/icons/16px/caret-up.svg +13 -0
  434. package/src/styles/icons/16px/cell-tower.svg +19 -0
  435. package/src/styles/icons/16px/changes.svg +16 -0
  436. package/src/styles/icons/16px/chart.svg +16 -0
  437. package/src/styles/icons/16px/chat.svg +12 -0
  438. package/src/styles/icons/16px/chevron-backward.svg +12 -0
  439. package/src/styles/icons/16px/chevron-down.svg +12 -0
  440. package/src/styles/icons/16px/chevron-forward.svg +12 -0
  441. package/src/styles/icons/16px/chevron-left.svg +12 -0
  442. package/src/styles/icons/16px/chevron-right.svg +12 -0
  443. package/src/styles/icons/16px/chevron-up.svg +12 -0
  444. package/src/styles/icons/16px/circle-arrow-down.svg +13 -0
  445. package/src/styles/icons/16px/circle-arrow-left.svg +13 -0
  446. package/src/styles/icons/16px/circle-arrow-right.svg +13 -0
  447. package/src/styles/icons/16px/circle-arrow-up.svg +13 -0
  448. package/src/styles/icons/16px/circle.svg +15 -0
  449. package/src/styles/icons/16px/citation.svg +15 -0
  450. package/src/styles/icons/16px/clean.svg +10 -0
  451. package/src/styles/icons/16px/clipboard.svg +13 -0
  452. package/src/styles/icons/16px/cloud-download.svg +15 -0
  453. package/src/styles/icons/16px/cloud-upload.svg +15 -0
  454. package/src/styles/icons/16px/cloud.svg +11 -0
  455. package/src/styles/icons/16px/code-block.svg +15 -0
  456. package/src/styles/icons/16px/code.svg +16 -0
  457. package/src/styles/icons/16px/cog.svg +19 -0
  458. package/src/styles/icons/16px/collapse-all.svg +14 -0
  459. package/src/styles/icons/16px/column-layout.svg +11 -0
  460. package/src/styles/icons/16px/comment.svg +13 -0
  461. package/src/styles/icons/16px/comparison.svg +16 -0
  462. package/src/styles/icons/16px/compass.svg +9 -0
  463. package/src/styles/icons/16px/compressed.svg +14 -0
  464. package/src/styles/icons/16px/confirm.svg +15 -0
  465. package/src/styles/icons/16px/console.svg +9 -0
  466. package/src/styles/icons/16px/contrast.svg +17 -0
  467. package/src/styles/icons/16px/control.svg +12 -0
  468. package/src/styles/icons/16px/credit-card.svg +14 -0
  469. package/src/styles/icons/16px/cross.svg +13 -0
  470. package/src/styles/icons/16px/crown.svg +12 -0
  471. package/src/styles/icons/16px/cube-add.svg +9 -0
  472. package/src/styles/icons/16px/cube-remove.svg +9 -0
  473. package/src/styles/icons/16px/cube.svg +9 -0
  474. package/src/styles/icons/16px/curved-range-chart.svg +12 -0
  475. package/src/styles/icons/16px/cut.svg +14 -0
  476. package/src/styles/icons/16px/dashboard.svg +14 -0
  477. package/src/styles/icons/16px/database.svg +13 -0
  478. package/src/styles/icons/16px/delete.svg +16 -0
  479. package/src/styles/icons/16px/delta.svg +11 -0
  480. package/src/styles/icons/16px/derive-column.svg +28 -0
  481. package/src/styles/icons/16px/desktop.svg +12 -0
  482. package/src/styles/icons/16px/diagram-tree.svg +10 -0
  483. package/src/styles/icons/16px/direction-left.svg +11 -0
  484. package/src/styles/icons/16px/direction-right.svg +11 -0
  485. package/src/styles/icons/16px/disable.svg +13 -0
  486. package/src/styles/icons/16px/document-open.svg +12 -0
  487. package/src/styles/icons/16px/document-share.svg +13 -0
  488. package/src/styles/icons/16px/document.svg +12 -0
  489. package/src/styles/icons/16px/dollar.svg +24 -0
  490. package/src/styles/icons/16px/dot.svg +11 -0
  491. package/src/styles/icons/16px/double-caret-horizontal.svg +13 -0
  492. package/src/styles/icons/16px/double-caret-vertical.svg +12 -0
  493. package/src/styles/icons/16px/double-chevron-down.svg +14 -0
  494. package/src/styles/icons/16px/double-chevron-left.svg +14 -0
  495. package/src/styles/icons/16px/double-chevron-right.svg +14 -0
  496. package/src/styles/icons/16px/double-chevron-up.svg +14 -0
  497. package/src/styles/icons/16px/doughnut-chart.svg +11 -0
  498. package/src/styles/icons/16px/download.svg +14 -0
  499. package/src/styles/icons/16px/drag-handle-horizontal.svg +15 -0
  500. package/src/styles/icons/16px/drag-handle-vertical.svg +15 -0
  501. package/src/styles/icons/16px/draw.svg +18 -0
  502. package/src/styles/icons/16px/drive-time.svg +16 -0
  503. package/src/styles/icons/16px/duplicate.svg +12 -0
  504. package/src/styles/icons/16px/edit.svg +13 -0
  505. package/src/styles/icons/16px/eject.svg +12 -0
  506. package/src/styles/icons/16px/endorsed.svg +17 -0
  507. package/src/styles/icons/16px/envelope.svg +13 -0
  508. package/src/styles/icons/16px/eraser.svg +12 -0
  509. package/src/styles/icons/16px/error.svg +12 -0
  510. package/src/styles/icons/16px/euro.svg +19 -0
  511. package/src/styles/icons/16px/exchange.svg +18 -0
  512. package/src/styles/icons/16px/exclude-row.svg +14 -0
  513. package/src/styles/icons/16px/expand-all.svg +14 -0
  514. package/src/styles/icons/16px/export.svg +14 -0
  515. package/src/styles/icons/16px/eye-off.svg +20 -0
  516. package/src/styles/icons/16px/eye-on.svg +20 -0
  517. package/src/styles/icons/16px/eye-open.svg +12 -0
  518. package/src/styles/icons/16px/fast-backward.svg +13 -0
  519. package/src/styles/icons/16px/fast-forward.svg +13 -0
  520. package/src/styles/icons/16px/feed-subscribed.svg +17 -0
  521. package/src/styles/icons/16px/feed.svg +15 -0
  522. package/src/styles/icons/16px/film.svg +12 -0
  523. package/src/styles/icons/16px/filter-keep.svg +14 -0
  524. package/src/styles/icons/16px/filter-list.svg +14 -0
  525. package/src/styles/icons/16px/filter-remove.svg +15 -0
  526. package/src/styles/icons/16px/filter.svg +13 -0
  527. package/src/styles/icons/16px/flag.svg +13 -0
  528. package/src/styles/icons/16px/flame.svg +10 -0
  529. package/src/styles/icons/16px/flash.svg +20 -0
  530. package/src/styles/icons/16px/floppy-disk.svg +12 -0
  531. package/src/styles/icons/16px/flow-branch.svg +12 -0
  532. package/src/styles/icons/16px/flow-end.svg +12 -0
  533. package/src/styles/icons/16px/flow-linear.svg +12 -0
  534. package/src/styles/icons/16px/flow-review-branch.svg +12 -0
  535. package/src/styles/icons/16px/flow-review.svg +12 -0
  536. package/src/styles/icons/16px/flows.svg +13 -0
  537. package/src/styles/icons/16px/folder-close.svg +12 -0
  538. package/src/styles/icons/16px/folder-new.svg +10 -0
  539. package/src/styles/icons/16px/folder-open.svg +12 -0
  540. package/src/styles/icons/16px/folder-shared-open.svg +15 -0
  541. package/src/styles/icons/16px/folder-shared.svg +15 -0
  542. package/src/styles/icons/16px/follower.svg +20 -0
  543. package/src/styles/icons/16px/following.svg +20 -0
  544. package/src/styles/icons/16px/font.svg +13 -0
  545. package/src/styles/icons/16px/fork.svg +15 -0
  546. package/src/styles/icons/16px/form.svg +18 -0
  547. package/src/styles/icons/16px/full-circle.svg +7 -0
  548. package/src/styles/icons/16px/full-stacked-chart.svg +14 -0
  549. package/src/styles/icons/16px/fullscreen.svg +17 -0
  550. package/src/styles/icons/16px/function.svg +27 -0
  551. package/src/styles/icons/16px/gantt-chart.svg +13 -0
  552. package/src/styles/icons/16px/geolocation.svg +11 -0
  553. package/src/styles/icons/16px/geosearch.svg +28 -0
  554. package/src/styles/icons/16px/git-branch.svg +15 -0
  555. package/src/styles/icons/16px/git-commit.svg +12 -0
  556. package/src/styles/icons/16px/git-merge.svg +14 -0
  557. package/src/styles/icons/16px/git-new-branch.svg +15 -0
  558. package/src/styles/icons/16px/git-pull.svg +16 -0
  559. package/src/styles/icons/16px/git-push.svg +13 -0
  560. package/src/styles/icons/16px/git-repo.svg +12 -0
  561. package/src/styles/icons/16px/glass.svg +11 -0
  562. package/src/styles/icons/16px/globe-network.svg +12 -0
  563. package/src/styles/icons/16px/globe.svg +38 -0
  564. package/src/styles/icons/16px/graph-remove.svg +17 -0
  565. package/src/styles/icons/16px/graph.svg +15 -0
  566. package/src/styles/icons/16px/grid-view.svg +11 -0
  567. package/src/styles/icons/16px/grid.svg +14 -0
  568. package/src/styles/icons/16px/group-objects.svg +13 -0
  569. package/src/styles/icons/16px/grouped-bar-chart.svg +13 -0
  570. package/src/styles/icons/16px/hand-down.svg +13 -0
  571. package/src/styles/icons/16px/hand-left.svg +13 -0
  572. package/src/styles/icons/16px/hand-right.svg +13 -0
  573. package/src/styles/icons/16px/hand-up.svg +13 -0
  574. package/src/styles/icons/16px/hand.svg +14 -0
  575. package/src/styles/icons/16px/header-one.svg +11 -0
  576. package/src/styles/icons/16px/header-two.svg +19 -0
  577. package/src/styles/icons/16px/header.svg +11 -0
  578. package/src/styles/icons/16px/headset.svg +13 -0
  579. package/src/styles/icons/16px/heart-broken.svg +16 -0
  580. package/src/styles/icons/16px/heart.svg +15 -0
  581. package/src/styles/icons/16px/heat-grid.svg +12 -0
  582. package/src/styles/icons/16px/heatmap.svg +15 -0
  583. package/src/styles/icons/16px/help.svg +16 -0
  584. package/src/styles/icons/16px/helper-management.svg +16 -0
  585. package/src/styles/icons/16px/highlight.svg +12 -0
  586. package/src/styles/icons/16px/history.svg +15 -0
  587. package/src/styles/icons/16px/home.svg +14 -0
  588. package/src/styles/icons/16px/horizontal-bar-chart-asc.svg +12 -0
  589. package/src/styles/icons/16px/horizontal-bar-chart-desc.svg +13 -0
  590. package/src/styles/icons/16px/horizontal-bar-chart.svg +13 -0
  591. package/src/styles/icons/16px/horizontal-distribution.svg +12 -0
  592. package/src/styles/icons/16px/id-number.svg +21 -0
  593. package/src/styles/icons/16px/image-rotate-left.svg +15 -0
  594. package/src/styles/icons/16px/image-rotate-right.svg +14 -0
  595. package/src/styles/icons/16px/import.svg +14 -0
  596. package/src/styles/icons/16px/inbox-filtered.svg +11 -0
  597. package/src/styles/icons/16px/inbox-geo.svg +11 -0
  598. package/src/styles/icons/16px/inbox-search.svg +11 -0
  599. package/src/styles/icons/16px/inbox-update.svg +11 -0
  600. package/src/styles/icons/16px/inbox.svg +13 -0
  601. package/src/styles/icons/16px/info-sign.svg +12 -0
  602. package/src/styles/icons/16px/inner-join.svg +14 -0
  603. package/src/styles/icons/16px/insert.svg +16 -0
  604. package/src/styles/icons/16px/intersection.svg +14 -0
  605. package/src/styles/icons/16px/ip-address.svg +13 -0
  606. package/src/styles/icons/16px/issue-closed.svg +12 -0
  607. package/src/styles/icons/16px/issue-new.svg +12 -0
  608. package/src/styles/icons/16px/issue.svg +12 -0
  609. package/src/styles/icons/16px/italic.svg +13 -0
  610. package/src/styles/icons/16px/join-table.svg +12 -0
  611. package/src/styles/icons/16px/key-backspace.svg +15 -0
  612. package/src/styles/icons/16px/key-command.svg +14 -0
  613. package/src/styles/icons/16px/key-control.svg +12 -0
  614. package/src/styles/icons/16px/key-delete.svg +15 -0
  615. package/src/styles/icons/16px/key-enter.svg +12 -0
  616. package/src/styles/icons/16px/key-escape.svg +13 -0
  617. package/src/styles/icons/16px/key-option.svg +12 -0
  618. package/src/styles/icons/16px/key-shift.svg +12 -0
  619. package/src/styles/icons/16px/key-tab.svg +15 -0
  620. package/src/styles/icons/16px/key.svg +15 -0
  621. package/src/styles/icons/16px/known-vehicle.svg +28 -0
  622. package/src/styles/icons/16px/label.svg +12 -0
  623. package/src/styles/icons/16px/layer.svg +13 -0
  624. package/src/styles/icons/16px/layers.svg +18 -0
  625. package/src/styles/icons/16px/layout-auto.svg +16 -0
  626. package/src/styles/icons/16px/layout-balloon.svg +16 -0
  627. package/src/styles/icons/16px/layout-circle.svg +22 -0
  628. package/src/styles/icons/16px/layout-grid.svg +16 -0
  629. package/src/styles/icons/16px/layout-group-by.svg +15 -0
  630. package/src/styles/icons/16px/layout-hierarchy.svg +17 -0
  631. package/src/styles/icons/16px/layout-linear.svg +12 -0
  632. package/src/styles/icons/16px/layout-skew-grid.svg +15 -0
  633. package/src/styles/icons/16px/layout-sorted-clusters.svg +13 -0
  634. package/src/styles/icons/16px/layout.svg +18 -0
  635. package/src/styles/icons/16px/left-join.svg +13 -0
  636. package/src/styles/icons/16px/lifesaver.svg +9 -0
  637. package/src/styles/icons/16px/lightbulb.svg +13 -0
  638. package/src/styles/icons/16px/link.svg +19 -0
  639. package/src/styles/icons/16px/list-columns.svg +12 -0
  640. package/src/styles/icons/16px/list-detail-view.svg +13 -0
  641. package/src/styles/icons/16px/list.svg +13 -0
  642. package/src/styles/icons/16px/locate.svg +16 -0
  643. package/src/styles/icons/16px/lock.svg +8 -0
  644. package/src/styles/icons/16px/log-in.svg +13 -0
  645. package/src/styles/icons/16px/log-out.svg +13 -0
  646. package/src/styles/icons/16px/manual.svg +17 -0
  647. package/src/styles/icons/16px/manually-entered-data.svg +14 -0
  648. package/src/styles/icons/16px/map-create.svg +17 -0
  649. package/src/styles/icons/16px/map-marker.svg +13 -0
  650. package/src/styles/icons/16px/map.svg +17 -0
  651. package/src/styles/icons/16px/maximize.svg +15 -0
  652. package/src/styles/icons/16px/media.svg +13 -0
  653. package/src/styles/icons/16px/menu-closed.svg +15 -0
  654. package/src/styles/icons/16px/menu-open.svg +14 -0
  655. package/src/styles/icons/16px/menu.svg +12 -0
  656. package/src/styles/icons/16px/merge-columns.svg +17 -0
  657. package/src/styles/icons/16px/merge-links.svg +15 -0
  658. package/src/styles/icons/16px/minimize.svg +15 -0
  659. package/src/styles/icons/16px/minus.svg +11 -0
  660. package/src/styles/icons/16px/mobile-phone.svg +11 -0
  661. package/src/styles/icons/16px/mobile-video.svg +12 -0
  662. package/src/styles/icons/16px/moon.svg +9 -0
  663. package/src/styles/icons/16px/more.svg +11 -0
  664. package/src/styles/icons/16px/mountain.svg +10 -0
  665. package/src/styles/icons/16px/move.svg +17 -0
  666. package/src/styles/icons/16px/mugshot.svg +18 -0
  667. package/src/styles/icons/16px/multi-select.svg +13 -0
  668. package/src/styles/icons/16px/music.svg +12 -0
  669. package/src/styles/icons/16px/new-grid-item.svg +16 -0
  670. package/src/styles/icons/16px/new-link.svg +13 -0
  671. package/src/styles/icons/16px/new-object.svg +17 -0
  672. package/src/styles/icons/16px/new-person.svg +18 -0
  673. package/src/styles/icons/16px/new-prescription.svg +19 -0
  674. package/src/styles/icons/16px/new-text-box.svg +15 -0
  675. package/src/styles/icons/16px/ninja.svg +13 -0
  676. package/src/styles/icons/16px/notifications-updated.svg +10 -0
  677. package/src/styles/icons/16px/notifications.svg +12 -0
  678. package/src/styles/icons/16px/numbered-list.svg +21 -0
  679. package/src/styles/icons/16px/numerical.svg +29 -0
  680. package/src/styles/icons/16px/office.svg +12 -0
  681. package/src/styles/icons/16px/offline.svg +12 -0
  682. package/src/styles/icons/16px/oil-field.svg +14 -0
  683. package/src/styles/icons/16px/one-column.svg +13 -0
  684. package/src/styles/icons/16px/outdated.svg +10 -0
  685. package/src/styles/icons/16px/page-layout.svg +12 -0
  686. package/src/styles/icons/16px/panel-stats.svg +15 -0
  687. package/src/styles/icons/16px/panel-table.svg +9 -0
  688. package/src/styles/icons/16px/paperclip.svg +16 -0
  689. package/src/styles/icons/16px/paragraph.svg +9 -0
  690. package/src/styles/icons/16px/path-search.svg +20 -0
  691. package/src/styles/icons/16px/path.svg +12 -0
  692. package/src/styles/icons/16px/pause.svg +11 -0
  693. package/src/styles/icons/16px/people.svg +25 -0
  694. package/src/styles/icons/16px/percentage.svg +14 -0
  695. package/src/styles/icons/16px/person.svg +19 -0
  696. package/src/styles/icons/16px/phone.svg +15 -0
  697. package/src/styles/icons/16px/pie-chart.svg +10 -0
  698. package/src/styles/icons/16px/pin.svg +12 -0
  699. package/src/styles/icons/16px/pivot-table.svg +16 -0
  700. package/src/styles/icons/16px/pivot.svg +14 -0
  701. package/src/styles/icons/16px/play.svg +12 -0
  702. package/src/styles/icons/16px/plus.svg +11 -0
  703. package/src/styles/icons/16px/polygon-filter.svg +15 -0
  704. package/src/styles/icons/16px/power.svg +12 -0
  705. package/src/styles/icons/16px/predictive-analysis.svg +33 -0
  706. package/src/styles/icons/16px/prescription.svg +15 -0
  707. package/src/styles/icons/16px/presentation.svg +14 -0
  708. package/src/styles/icons/16px/print.svg +13 -0
  709. package/src/styles/icons/16px/projects.svg +13 -0
  710. package/src/styles/icons/16px/properties.svg +15 -0
  711. package/src/styles/icons/16px/property.svg +15 -0
  712. package/src/styles/icons/16px/publish-function.svg +30 -0
  713. package/src/styles/icons/16px/pulse.svg +13 -0
  714. package/src/styles/icons/16px/random.svg +17 -0
  715. package/src/styles/icons/16px/record.svg +10 -0
  716. package/src/styles/icons/16px/redo.svg +13 -0
  717. package/src/styles/icons/16px/refresh.svg +15 -0
  718. package/src/styles/icons/16px/regression-chart.svg +13 -0
  719. package/src/styles/icons/16px/remove-column-left.svg +12 -0
  720. package/src/styles/icons/16px/remove-column-right.svg +12 -0
  721. package/src/styles/icons/16px/remove-column.svg +14 -0
  722. package/src/styles/icons/16px/remove-row-bottom.svg +12 -0
  723. package/src/styles/icons/16px/remove-row-top.svg +12 -0
  724. package/src/styles/icons/16px/remove.svg +13 -0
  725. package/src/styles/icons/16px/repeat.svg +13 -0
  726. package/src/styles/icons/16px/resolve.svg +17 -0
  727. package/src/styles/icons/16px/rig.svg +14 -0
  728. package/src/styles/icons/16px/right-join.svg +13 -0
  729. package/src/styles/icons/16px/ring.svg +11 -0
  730. package/src/styles/icons/16px/rotate-document.svg +14 -0
  731. package/src/styles/icons/16px/rotate-page.svg +13 -0
  732. package/src/styles/icons/16px/satellite.svg +17 -0
  733. package/src/styles/icons/16px/saved.svg +13 -0
  734. package/src/styles/icons/16px/scatter-plot.svg +13 -0
  735. package/src/styles/icons/16px/search-around.svg +20 -0
  736. package/src/styles/icons/16px/search-template.svg +16 -0
  737. package/src/styles/icons/16px/search-text.svg +14 -0
  738. package/src/styles/icons/16px/search.svg +13 -0
  739. package/src/styles/icons/16px/segmented-control.svg +10 -0
  740. package/src/styles/icons/16px/select.svg +15 -0
  741. package/src/styles/icons/16px/selection.svg +12 -0
  742. package/src/styles/icons/16px/send-to-graph.svg +16 -0
  743. package/src/styles/icons/16px/send-to-map.svg +16 -0
  744. package/src/styles/icons/16px/send-to.svg +18 -0
  745. package/src/styles/icons/16px/series-add.svg +9 -0
  746. package/src/styles/icons/16px/series-configuration.svg +17 -0
  747. package/src/styles/icons/16px/series-derived.svg +10 -0
  748. package/src/styles/icons/16px/series-filtered.svg +10 -0
  749. package/src/styles/icons/16px/series-search.svg +15 -0
  750. package/src/styles/icons/16px/settings.svg +14 -0
  751. package/src/styles/icons/16px/share.svg +14 -0
  752. package/src/styles/icons/16px/shield.svg +10 -0
  753. package/src/styles/icons/16px/shop.svg +13 -0
  754. package/src/styles/icons/16px/shopping-cart.svg +13 -0
  755. package/src/styles/icons/16px/sim-card.svg +12 -0
  756. package/src/styles/icons/16px/slash.svg +11 -0
  757. package/src/styles/icons/16px/small-cross.svg +13 -0
  758. package/src/styles/icons/16px/small-minus.svg +11 -0
  759. package/src/styles/icons/16px/small-plus.svg +11 -0
  760. package/src/styles/icons/16px/small-tick.svg +12 -0
  761. package/src/styles/icons/16px/snowflake.svg +12 -0
  762. package/src/styles/icons/16px/social-media.svg +19 -0
  763. package/src/styles/icons/16px/sort-alphabetical-desc.svg +14 -0
  764. package/src/styles/icons/16px/sort-alphabetical.svg +14 -0
  765. package/src/styles/icons/16px/sort-asc.svg +15 -0
  766. package/src/styles/icons/16px/sort-desc.svg +15 -0
  767. package/src/styles/icons/16px/sort-numerical-desc.svg +26 -0
  768. package/src/styles/icons/16px/sort-numerical.svg +25 -0
  769. package/src/styles/icons/16px/sort.svg +15 -0
  770. package/src/styles/icons/16px/split-columns.svg +17 -0
  771. package/src/styles/icons/16px/square.svg +12 -0
  772. package/src/styles/icons/16px/stacked-chart.svg +13 -0
  773. package/src/styles/icons/16px/star-empty.svg +8 -0
  774. package/src/styles/icons/16px/star.svg +8 -0
  775. package/src/styles/icons/16px/step-backward.svg +12 -0
  776. package/src/styles/icons/16px/step-chart.svg +12 -0
  777. package/src/styles/icons/16px/step-forward.svg +12 -0
  778. package/src/styles/icons/16px/stop.svg +11 -0
  779. package/src/styles/icons/16px/strikethrough.svg +21 -0
  780. package/src/styles/icons/16px/style.svg +13 -0
  781. package/src/styles/icons/16px/swap-horizontal.svg +16 -0
  782. package/src/styles/icons/16px/swap-vertical.svg +16 -0
  783. package/src/styles/icons/16px/symbol-circle.svg +10 -0
  784. package/src/styles/icons/16px/symbol-cross.svg +11 -0
  785. package/src/styles/icons/16px/symbol-diamond.svg +12 -0
  786. package/src/styles/icons/16px/symbol-square.svg +11 -0
  787. package/src/styles/icons/16px/symbol-triangle-down.svg +11 -0
  788. package/src/styles/icons/16px/symbol-triangle-up.svg +12 -0
  789. package/src/styles/icons/16px/tag.svg +10 -0
  790. package/src/styles/icons/16px/take-action.svg +15 -0
  791. package/src/styles/icons/16px/taxi.svg +12 -0
  792. package/src/styles/icons/16px/text-highlight.svg +13 -0
  793. package/src/styles/icons/16px/th-derived.svg +17 -0
  794. package/src/styles/icons/16px/th-filtered.svg +10 -0
  795. package/src/styles/icons/16px/th-list.svg +15 -0
  796. package/src/styles/icons/16px/th.svg +16 -0
  797. package/src/styles/icons/16px/thumbs-down.svg +17 -0
  798. package/src/styles/icons/16px/thumbs-up.svg +17 -0
  799. package/src/styles/icons/16px/tick-circle.svg +10 -0
  800. package/src/styles/icons/16px/tick.svg +12 -0
  801. package/src/styles/icons/16px/time.svg +13 -0
  802. package/src/styles/icons/16px/timeline-area-chart.svg +12 -0
  803. package/src/styles/icons/16px/timeline-bar-chart.svg +13 -0
  804. package/src/styles/icons/16px/timeline-events.svg +18 -0
  805. package/src/styles/icons/16px/timeline-line-chart.svg +14 -0
  806. package/src/styles/icons/16px/tint.svg +11 -0
  807. package/src/styles/icons/16px/torch.svg +13 -0
  808. package/src/styles/icons/16px/train.svg +7 -0
  809. package/src/styles/icons/16px/translate.svg +16 -0
  810. package/src/styles/icons/16px/trash.svg +15 -0
  811. package/src/styles/icons/16px/tree.svg +12 -0
  812. package/src/styles/icons/16px/trending-down.svg +13 -0
  813. package/src/styles/icons/16px/trending-up.svg +13 -0
  814. package/src/styles/icons/16px/two-columns.svg +14 -0
  815. package/src/styles/icons/16px/underline.svg +12 -0
  816. package/src/styles/icons/16px/undo.svg +13 -0
  817. package/src/styles/icons/16px/ungroup-objects.svg +12 -0
  818. package/src/styles/icons/16px/unknown-vehicle.svg +34 -0
  819. package/src/styles/icons/16px/unlock.svg +13 -0
  820. package/src/styles/icons/16px/unpin.svg +13 -0
  821. package/src/styles/icons/16px/unresolve.svg +18 -0
  822. package/src/styles/icons/16px/updated.svg +10 -0
  823. package/src/styles/icons/16px/upload.svg +12 -0
  824. package/src/styles/icons/16px/user.svg +28 -0
  825. package/src/styles/icons/16px/variable.svg +24 -0
  826. package/src/styles/icons/16px/vertical-bar-chart-asc.svg +12 -0
  827. package/src/styles/icons/16px/vertical-bar-chart-desc.svg +12 -0
  828. package/src/styles/icons/16px/vertical-distribution.svg +12 -0
  829. package/src/styles/icons/16px/video.svg +11 -0
  830. package/src/styles/icons/16px/volume-down.svg +12 -0
  831. package/src/styles/icons/16px/volume-off.svg +11 -0
  832. package/src/styles/icons/16px/volume-up.svg +14 -0
  833. package/src/styles/icons/16px/walk.svg +10 -0
  834. package/src/styles/icons/16px/warning-sign.svg +13 -0
  835. package/src/styles/icons/16px/waterfall-chart.svg +13 -0
  836. package/src/styles/icons/16px/widget-button.svg +12 -0
  837. package/src/styles/icons/16px/widget-footer.svg +7 -0
  838. package/src/styles/icons/16px/widget-header.svg +7 -0
  839. package/src/styles/icons/16px/widget.svg +14 -0
  840. package/src/styles/icons/16px/wrench.svg +12 -0
  841. package/src/styles/icons/16px/zoom-in.svg +15 -0
  842. package/src/styles/icons/16px/zoom-out.svg +14 -0
  843. package/src/styles/icons/16px/zoom-to-fit.svg +21 -0
  844. package/src/styles/icons/20px/add-column-left.svg +12 -0
  845. package/src/styles/icons/20px/add-column-right.svg +12 -0
  846. package/src/styles/icons/20px/add-row-bottom.svg +12 -0
  847. package/src/styles/icons/20px/add-row-top.svg +12 -0
  848. package/src/styles/icons/20px/add-to-artifact.svg +15 -0
  849. package/src/styles/icons/20px/add-to-folder.svg +10 -0
  850. package/src/styles/icons/20px/add.svg +14 -0
  851. package/src/styles/icons/20px/airplane.svg +11 -0
  852. package/src/styles/icons/20px/align-center.svg +15 -0
  853. package/src/styles/icons/20px/align-justify.svg +15 -0
  854. package/src/styles/icons/20px/align-left.svg +15 -0
  855. package/src/styles/icons/20px/align-right.svg +15 -0
  856. package/src/styles/icons/20px/alignment-bottom.svg +12 -0
  857. package/src/styles/icons/20px/alignment-horizontal-center.svg +12 -0
  858. package/src/styles/icons/20px/alignment-left.svg +12 -0
  859. package/src/styles/icons/20px/alignment-right.svg +12 -0
  860. package/src/styles/icons/20px/alignment-top.svg +12 -0
  861. package/src/styles/icons/20px/alignment-vertical-center.svg +12 -0
  862. package/src/styles/icons/20px/annotation.svg +12 -0
  863. package/src/styles/icons/20px/application.svg +13 -0
  864. package/src/styles/icons/20px/applications.svg +15 -0
  865. package/src/styles/icons/20px/arrow-bottom-left.svg +12 -0
  866. package/src/styles/icons/20px/arrow-bottom-right.svg +12 -0
  867. package/src/styles/icons/20px/arrow-down.svg +16 -0
  868. package/src/styles/icons/20px/arrow-left.svg +13 -0
  869. package/src/styles/icons/20px/arrow-right.svg +13 -0
  870. package/src/styles/icons/20px/arrow-top-left.svg +12 -0
  871. package/src/styles/icons/20px/arrow-top-right.svg +12 -0
  872. package/src/styles/icons/20px/arrow-up.svg +16 -0
  873. package/src/styles/icons/20px/arrows-horizontal.svg +17 -0
  874. package/src/styles/icons/20px/arrows-vertical.svg +17 -0
  875. package/src/styles/icons/20px/asterisk.svg +14 -0
  876. package/src/styles/icons/20px/automatic-updates.svg +17 -0
  877. package/src/styles/icons/20px/badge.svg +13 -0
  878. package/src/styles/icons/20px/ban-circle.svg +11 -0
  879. package/src/styles/icons/20px/bank-account.svg +17 -0
  880. package/src/styles/icons/20px/barcode.svg +13 -0
  881. package/src/styles/icons/20px/blank.svg +5 -0
  882. package/src/styles/icons/20px/blocked-person.svg +19 -0
  883. package/src/styles/icons/20px/bold.svg +12 -0
  884. package/src/styles/icons/20px/book.svg +11 -0
  885. package/src/styles/icons/20px/bookmark.svg +11 -0
  886. package/src/styles/icons/20px/box.svg +13 -0
  887. package/src/styles/icons/20px/briefcase.svg +13 -0
  888. package/src/styles/icons/20px/build.svg +13 -0
  889. package/src/styles/icons/20px/calculator.svg +12 -0
  890. package/src/styles/icons/20px/calendar.svg +10 -0
  891. package/src/styles/icons/20px/camera.svg +13 -0
  892. package/src/styles/icons/20px/caret-down.svg +12 -0
  893. package/src/styles/icons/20px/caret-left.svg +13 -0
  894. package/src/styles/icons/20px/caret-right.svg +13 -0
  895. package/src/styles/icons/20px/caret-up.svg +13 -0
  896. package/src/styles/icons/20px/cell-tower.svg +19 -0
  897. package/src/styles/icons/20px/changes.svg +16 -0
  898. package/src/styles/icons/20px/chart.svg +16 -0
  899. package/src/styles/icons/20px/chat.svg +13 -0
  900. package/src/styles/icons/20px/chevron-backward.svg +12 -0
  901. package/src/styles/icons/20px/chevron-down.svg +12 -0
  902. package/src/styles/icons/20px/chevron-forward.svg +12 -0
  903. package/src/styles/icons/20px/chevron-left.svg +12 -0
  904. package/src/styles/icons/20px/chevron-right.svg +12 -0
  905. package/src/styles/icons/20px/chevron-up.svg +12 -0
  906. package/src/styles/icons/20px/circle-arrow-down.svg +13 -0
  907. package/src/styles/icons/20px/circle-arrow-left.svg +13 -0
  908. package/src/styles/icons/20px/circle-arrow-right.svg +14 -0
  909. package/src/styles/icons/20px/circle-arrow-up.svg +13 -0
  910. package/src/styles/icons/20px/circle.svg +15 -0
  911. package/src/styles/icons/20px/citation.svg +12 -0
  912. package/src/styles/icons/20px/clean.svg +10 -0
  913. package/src/styles/icons/20px/clipboard.svg +10 -0
  914. package/src/styles/icons/20px/cloud-download.svg +15 -0
  915. package/src/styles/icons/20px/cloud-upload.svg +15 -0
  916. package/src/styles/icons/20px/cloud.svg +11 -0
  917. package/src/styles/icons/20px/code-block.svg +15 -0
  918. package/src/styles/icons/20px/code.svg +16 -0
  919. package/src/styles/icons/20px/cog.svg +18 -0
  920. package/src/styles/icons/20px/collapse-all.svg +14 -0
  921. package/src/styles/icons/20px/column-layout.svg +11 -0
  922. package/src/styles/icons/20px/comment.svg +13 -0
  923. package/src/styles/icons/20px/comparison.svg +17 -0
  924. package/src/styles/icons/20px/compass.svg +9 -0
  925. package/src/styles/icons/20px/compressed.svg +14 -0
  926. package/src/styles/icons/20px/confirm.svg +15 -0
  927. package/src/styles/icons/20px/console.svg +10 -0
  928. package/src/styles/icons/20px/contrast.svg +17 -0
  929. package/src/styles/icons/20px/control.svg +12 -0
  930. package/src/styles/icons/20px/credit-card.svg +14 -0
  931. package/src/styles/icons/20px/cross.svg +13 -0
  932. package/src/styles/icons/20px/crown.svg +12 -0
  933. package/src/styles/icons/20px/cube-add.svg +9 -0
  934. package/src/styles/icons/20px/cube-remove.svg +9 -0
  935. package/src/styles/icons/20px/cube.svg +9 -0
  936. package/src/styles/icons/20px/curved-range-chart.svg +13 -0
  937. package/src/styles/icons/20px/cut.svg +14 -0
  938. package/src/styles/icons/20px/dashboard.svg +15 -0
  939. package/src/styles/icons/20px/database.svg +14 -0
  940. package/src/styles/icons/20px/delete.svg +15 -0
  941. package/src/styles/icons/20px/delta.svg +11 -0
  942. package/src/styles/icons/20px/derive-column.svg +29 -0
  943. package/src/styles/icons/20px/desktop.svg +12 -0
  944. package/src/styles/icons/20px/diagram-tree.svg +10 -0
  945. package/src/styles/icons/20px/direction-left.svg +11 -0
  946. package/src/styles/icons/20px/direction-right.svg +11 -0
  947. package/src/styles/icons/20px/disable.svg +13 -0
  948. package/src/styles/icons/20px/document-open.svg +12 -0
  949. package/src/styles/icons/20px/document-share.svg +14 -0
  950. package/src/styles/icons/20px/document.svg +12 -0
  951. package/src/styles/icons/20px/dollar.svg +23 -0
  952. package/src/styles/icons/20px/dot.svg +11 -0
  953. package/src/styles/icons/20px/double-caret-horizontal.svg +13 -0
  954. package/src/styles/icons/20px/double-caret-vertical.svg +13 -0
  955. package/src/styles/icons/20px/double-chevron-down.svg +14 -0
  956. package/src/styles/icons/20px/double-chevron-left.svg +14 -0
  957. package/src/styles/icons/20px/double-chevron-right.svg +14 -0
  958. package/src/styles/icons/20px/double-chevron-up.svg +14 -0
  959. package/src/styles/icons/20px/doughnut-chart.svg +11 -0
  960. package/src/styles/icons/20px/download.svg +14 -0
  961. package/src/styles/icons/20px/drag-handle-horizontal.svg +15 -0
  962. package/src/styles/icons/20px/drag-handle-vertical.svg +15 -0
  963. package/src/styles/icons/20px/draw.svg +18 -0
  964. package/src/styles/icons/20px/drive-time.svg +18 -0
  965. package/src/styles/icons/20px/duplicate.svg +12 -0
  966. package/src/styles/icons/20px/edit.svg +13 -0
  967. package/src/styles/icons/20px/eject.svg +12 -0
  968. package/src/styles/icons/20px/endorsed.svg +17 -0
  969. package/src/styles/icons/20px/envelope.svg +13 -0
  970. package/src/styles/icons/20px/eraser.svg +12 -0
  971. package/src/styles/icons/20px/error.svg +12 -0
  972. package/src/styles/icons/20px/euro.svg +19 -0
  973. package/src/styles/icons/20px/exchange.svg +17 -0
  974. package/src/styles/icons/20px/exclude-row.svg +15 -0
  975. package/src/styles/icons/20px/expand-all.svg +14 -0
  976. package/src/styles/icons/20px/export.svg +14 -0
  977. package/src/styles/icons/20px/eye-off.svg +21 -0
  978. package/src/styles/icons/20px/eye-on.svg +20 -0
  979. package/src/styles/icons/20px/eye-open.svg +12 -0
  980. package/src/styles/icons/20px/fast-backward.svg +13 -0
  981. package/src/styles/icons/20px/fast-forward.svg +13 -0
  982. package/src/styles/icons/20px/feed-subscribed.svg +17 -0
  983. package/src/styles/icons/20px/feed.svg +15 -0
  984. package/src/styles/icons/20px/film.svg +12 -0
  985. package/src/styles/icons/20px/filter-keep.svg +13 -0
  986. package/src/styles/icons/20px/filter-list.svg +14 -0
  987. package/src/styles/icons/20px/filter-remove.svg +15 -0
  988. package/src/styles/icons/20px/filter.svg +13 -0
  989. package/src/styles/icons/20px/flag.svg +13 -0
  990. package/src/styles/icons/20px/flame.svg +10 -0
  991. package/src/styles/icons/20px/flash.svg +20 -0
  992. package/src/styles/icons/20px/floppy-disk.svg +12 -0
  993. package/src/styles/icons/20px/flow-branch.svg +12 -0
  994. package/src/styles/icons/20px/flow-end.svg +12 -0
  995. package/src/styles/icons/20px/flow-linear.svg +12 -0
  996. package/src/styles/icons/20px/flow-review-branch.svg +12 -0
  997. package/src/styles/icons/20px/flow-review.svg +12 -0
  998. package/src/styles/icons/20px/flows.svg +13 -0
  999. package/src/styles/icons/20px/folder-close.svg +12 -0
  1000. package/src/styles/icons/20px/folder-new.svg +10 -0
  1001. package/src/styles/icons/20px/folder-open.svg +13 -0
  1002. package/src/styles/icons/20px/folder-shared-open.svg +15 -0
  1003. package/src/styles/icons/20px/folder-shared.svg +15 -0
  1004. package/src/styles/icons/20px/follower.svg +20 -0
  1005. package/src/styles/icons/20px/following.svg +20 -0
  1006. package/src/styles/icons/20px/font.svg +13 -0
  1007. package/src/styles/icons/20px/fork.svg +16 -0
  1008. package/src/styles/icons/20px/form.svg +18 -0
  1009. package/src/styles/icons/20px/full-circle.svg +7 -0
  1010. package/src/styles/icons/20px/full-stacked-chart.svg +14 -0
  1011. package/src/styles/icons/20px/fullscreen.svg +16 -0
  1012. package/src/styles/icons/20px/function.svg +27 -0
  1013. package/src/styles/icons/20px/gantt-chart.svg +13 -0
  1014. package/src/styles/icons/20px/geolocation.svg +11 -0
  1015. package/src/styles/icons/20px/geosearch.svg +28 -0
  1016. package/src/styles/icons/20px/git-branch.svg +15 -0
  1017. package/src/styles/icons/20px/git-commit.svg +12 -0
  1018. package/src/styles/icons/20px/git-merge.svg +14 -0
  1019. package/src/styles/icons/20px/git-new-branch.svg +15 -0
  1020. package/src/styles/icons/20px/git-pull.svg +17 -0
  1021. package/src/styles/icons/20px/git-push.svg +14 -0
  1022. package/src/styles/icons/20px/git-repo.svg +12 -0
  1023. package/src/styles/icons/20px/glass.svg +11 -0
  1024. package/src/styles/icons/20px/globe-network.svg +12 -0
  1025. package/src/styles/icons/20px/globe.svg +36 -0
  1026. package/src/styles/icons/20px/graph-remove.svg +17 -0
  1027. package/src/styles/icons/20px/graph.svg +16 -0
  1028. package/src/styles/icons/20px/grid-view.svg +11 -0
  1029. package/src/styles/icons/20px/grid.svg +14 -0
  1030. package/src/styles/icons/20px/group-objects.svg +13 -0
  1031. package/src/styles/icons/20px/grouped-bar-chart.svg +14 -0
  1032. package/src/styles/icons/20px/hand-down.svg +14 -0
  1033. package/src/styles/icons/20px/hand-left.svg +14 -0
  1034. package/src/styles/icons/20px/hand-right.svg +14 -0
  1035. package/src/styles/icons/20px/hand-up.svg +14 -0
  1036. package/src/styles/icons/20px/hand.svg +20 -0
  1037. package/src/styles/icons/20px/header-one.svg +12 -0
  1038. package/src/styles/icons/20px/header-two.svg +19 -0
  1039. package/src/styles/icons/20px/header.svg +11 -0
  1040. package/src/styles/icons/20px/headset.svg +13 -0
  1041. package/src/styles/icons/20px/heart-broken.svg +16 -0
  1042. package/src/styles/icons/20px/heart.svg +16 -0
  1043. package/src/styles/icons/20px/heat-grid.svg +12 -0
  1044. package/src/styles/icons/20px/heatmap.svg +12 -0
  1045. package/src/styles/icons/20px/help.svg +12 -0
  1046. package/src/styles/icons/20px/helper-management.svg +16 -0
  1047. package/src/styles/icons/20px/highlight.svg +13 -0
  1048. package/src/styles/icons/20px/history.svg +14 -0
  1049. package/src/styles/icons/20px/home.svg +14 -0
  1050. package/src/styles/icons/20px/horizontal-bar-chart-asc.svg +13 -0
  1051. package/src/styles/icons/20px/horizontal-bar-chart-desc.svg +13 -0
  1052. package/src/styles/icons/20px/horizontal-bar-chart.svg +13 -0
  1053. package/src/styles/icons/20px/horizontal-distribution.svg +12 -0
  1054. package/src/styles/icons/20px/id-number.svg +23 -0
  1055. package/src/styles/icons/20px/image-rotate-left.svg +14 -0
  1056. package/src/styles/icons/20px/image-rotate-right.svg +14 -0
  1057. package/src/styles/icons/20px/import.svg +14 -0
  1058. package/src/styles/icons/20px/inbox-filtered.svg +11 -0
  1059. package/src/styles/icons/20px/inbox-geo.svg +11 -0
  1060. package/src/styles/icons/20px/inbox-search.svg +11 -0
  1061. package/src/styles/icons/20px/inbox-update.svg +11 -0
  1062. package/src/styles/icons/20px/inbox.svg +13 -0
  1063. package/src/styles/icons/20px/info-sign.svg +12 -0
  1064. package/src/styles/icons/20px/inner-join.svg +14 -0
  1065. package/src/styles/icons/20px/insert.svg +16 -0
  1066. package/src/styles/icons/20px/intersection.svg +14 -0
  1067. package/src/styles/icons/20px/ip-address.svg +13 -0
  1068. package/src/styles/icons/20px/issue-closed.svg +12 -0
  1069. package/src/styles/icons/20px/issue-new.svg +12 -0
  1070. package/src/styles/icons/20px/issue.svg +12 -0
  1071. package/src/styles/icons/20px/italic.svg +13 -0
  1072. package/src/styles/icons/20px/join-table.svg +12 -0
  1073. package/src/styles/icons/20px/key-backspace.svg +15 -0
  1074. package/src/styles/icons/20px/key-command.svg +15 -0
  1075. package/src/styles/icons/20px/key-control.svg +12 -0
  1076. package/src/styles/icons/20px/key-delete.svg +15 -0
  1077. package/src/styles/icons/20px/key-enter.svg +13 -0
  1078. package/src/styles/icons/20px/key-escape.svg +13 -0
  1079. package/src/styles/icons/20px/key-option.svg +12 -0
  1080. package/src/styles/icons/20px/key-shift.svg +12 -0
  1081. package/src/styles/icons/20px/key-tab.svg +15 -0
  1082. package/src/styles/icons/20px/key.svg +13 -0
  1083. package/src/styles/icons/20px/known-vehicle.svg +25 -0
  1084. package/src/styles/icons/20px/label.svg +12 -0
  1085. package/src/styles/icons/20px/layer.svg +11 -0
  1086. package/src/styles/icons/20px/layers.svg +14 -0
  1087. package/src/styles/icons/20px/layout-auto.svg +17 -0
  1088. package/src/styles/icons/20px/layout-balloon.svg +16 -0
  1089. package/src/styles/icons/20px/layout-circle.svg +21 -0
  1090. package/src/styles/icons/20px/layout-grid.svg +53 -0
  1091. package/src/styles/icons/20px/layout-group-by.svg +48 -0
  1092. package/src/styles/icons/20px/layout-hierarchy.svg +17 -0
  1093. package/src/styles/icons/20px/layout-linear.svg +12 -0
  1094. package/src/styles/icons/20px/layout-skew-grid.svg +48 -0
  1095. package/src/styles/icons/20px/layout-sorted-clusters.svg +13 -0
  1096. package/src/styles/icons/20px/layout.svg +18 -0
  1097. package/src/styles/icons/20px/left-join.svg +13 -0
  1098. package/src/styles/icons/20px/lifesaver.svg +9 -0
  1099. package/src/styles/icons/20px/lightbulb.svg +13 -0
  1100. package/src/styles/icons/20px/link.svg +18 -0
  1101. package/src/styles/icons/20px/list-columns.svg +12 -0
  1102. package/src/styles/icons/20px/list-detail-view.svg +14 -0
  1103. package/src/styles/icons/20px/list.svg +24 -0
  1104. package/src/styles/icons/20px/locate.svg +16 -0
  1105. package/src/styles/icons/20px/lock.svg +8 -0
  1106. package/src/styles/icons/20px/log-in.svg +13 -0
  1107. package/src/styles/icons/20px/log-out.svg +13 -0
  1108. package/src/styles/icons/20px/manual.svg +20 -0
  1109. package/src/styles/icons/20px/manually-entered-data.svg +15 -0
  1110. package/src/styles/icons/20px/map-create.svg +16 -0
  1111. package/src/styles/icons/20px/map-marker.svg +12 -0
  1112. package/src/styles/icons/20px/map.svg +15 -0
  1113. package/src/styles/icons/20px/maximize.svg +14 -0
  1114. package/src/styles/icons/20px/media.svg +12 -0
  1115. package/src/styles/icons/20px/menu-closed.svg +15 -0
  1116. package/src/styles/icons/20px/menu-open.svg +15 -0
  1117. package/src/styles/icons/20px/menu.svg +12 -0
  1118. package/src/styles/icons/20px/merge-columns.svg +17 -0
  1119. package/src/styles/icons/20px/merge-links.svg +13 -0
  1120. package/src/styles/icons/20px/minimize.svg +14 -0
  1121. package/src/styles/icons/20px/minus.svg +11 -0
  1122. package/src/styles/icons/20px/mobile-phone.svg +11 -0
  1123. package/src/styles/icons/20px/mobile-video.svg +12 -0
  1124. package/src/styles/icons/20px/moon.svg +9 -0
  1125. package/src/styles/icons/20px/more.svg +11 -0
  1126. package/src/styles/icons/20px/mountain.svg +10 -0
  1127. package/src/styles/icons/20px/move.svg +18 -0
  1128. package/src/styles/icons/20px/mugshot.svg +19 -0
  1129. package/src/styles/icons/20px/multi-select.svg +13 -0
  1130. package/src/styles/icons/20px/music.svg +12 -0
  1131. package/src/styles/icons/20px/new-grid-item.svg +16 -0
  1132. package/src/styles/icons/20px/new-link.svg +13 -0
  1133. package/src/styles/icons/20px/new-object.svg +17 -0
  1134. package/src/styles/icons/20px/new-person.svg +19 -0
  1135. package/src/styles/icons/20px/new-prescription.svg +16 -0
  1136. package/src/styles/icons/20px/new-text-box.svg +16 -0
  1137. package/src/styles/icons/20px/ninja.svg +13 -0
  1138. package/src/styles/icons/20px/notifications-updated.svg +10 -0
  1139. package/src/styles/icons/20px/notifications.svg +13 -0
  1140. package/src/styles/icons/20px/numbered-list.svg +21 -0
  1141. package/src/styles/icons/20px/numerical.svg +29 -0
  1142. package/src/styles/icons/20px/office.svg +12 -0
  1143. package/src/styles/icons/20px/offline.svg +12 -0
  1144. package/src/styles/icons/20px/oil-field.svg +14 -0
  1145. package/src/styles/icons/20px/one-column.svg +13 -0
  1146. package/src/styles/icons/20px/outdated.svg +10 -0
  1147. package/src/styles/icons/20px/page-layout.svg +12 -0
  1148. package/src/styles/icons/20px/panel-stats.svg +12 -0
  1149. package/src/styles/icons/20px/panel-table.svg +9 -0
  1150. package/src/styles/icons/20px/paperclip.svg +16 -0
  1151. package/src/styles/icons/20px/paragraph.svg +9 -0
  1152. package/src/styles/icons/20px/path-search.svg +24 -0
  1153. package/src/styles/icons/20px/path.svg +12 -0
  1154. package/src/styles/icons/20px/pause.svg +11 -0
  1155. package/src/styles/icons/20px/people.svg +26 -0
  1156. package/src/styles/icons/20px/percentage.svg +14 -0
  1157. package/src/styles/icons/20px/person.svg +18 -0
  1158. package/src/styles/icons/20px/phone.svg +15 -0
  1159. package/src/styles/icons/20px/pie-chart.svg +10 -0
  1160. package/src/styles/icons/20px/pin.svg +13 -0
  1161. package/src/styles/icons/20px/pivot-table.svg +16 -0
  1162. package/src/styles/icons/20px/pivot.svg +14 -0
  1163. package/src/styles/icons/20px/play.svg +12 -0
  1164. package/src/styles/icons/20px/plus.svg +11 -0
  1165. package/src/styles/icons/20px/polygon-filter.svg +15 -0
  1166. package/src/styles/icons/20px/power.svg +12 -0
  1167. package/src/styles/icons/20px/predictive-analysis.svg +33 -0
  1168. package/src/styles/icons/20px/prescription.svg +14 -0
  1169. package/src/styles/icons/20px/presentation.svg +14 -0
  1170. package/src/styles/icons/20px/print.svg +13 -0
  1171. package/src/styles/icons/20px/projects.svg +13 -0
  1172. package/src/styles/icons/20px/properties.svg +14 -0
  1173. package/src/styles/icons/20px/property.svg +14 -0
  1174. package/src/styles/icons/20px/publish-function.svg +30 -0
  1175. package/src/styles/icons/20px/pulse.svg +13 -0
  1176. package/src/styles/icons/20px/random.svg +17 -0
  1177. package/src/styles/icons/20px/record.svg +10 -0
  1178. package/src/styles/icons/20px/redo.svg +13 -0
  1179. package/src/styles/icons/20px/refresh.svg +15 -0
  1180. package/src/styles/icons/20px/regression-chart.svg +13 -0
  1181. package/src/styles/icons/20px/remove-column-left.svg +12 -0
  1182. package/src/styles/icons/20px/remove-column-right.svg +12 -0
  1183. package/src/styles/icons/20px/remove-column.svg +14 -0
  1184. package/src/styles/icons/20px/remove-row-bottom.svg +12 -0
  1185. package/src/styles/icons/20px/remove-row-top.svg +11 -0
  1186. package/src/styles/icons/20px/remove.svg +13 -0
  1187. package/src/styles/icons/20px/repeat.svg +12 -0
  1188. package/src/styles/icons/20px/resolve.svg +17 -0
  1189. package/src/styles/icons/20px/rig.svg +14 -0
  1190. package/src/styles/icons/20px/right-join.svg +13 -0
  1191. package/src/styles/icons/20px/ring.svg +11 -0
  1192. package/src/styles/icons/20px/rotate-document.svg +14 -0
  1193. package/src/styles/icons/20px/rotate-page.svg +14 -0
  1194. package/src/styles/icons/20px/satellite.svg +15 -0
  1195. package/src/styles/icons/20px/saved.svg +13 -0
  1196. package/src/styles/icons/20px/scatter-plot.svg +13 -0
  1197. package/src/styles/icons/20px/search-around.svg +30 -0
  1198. package/src/styles/icons/20px/search-template.svg +16 -0
  1199. package/src/styles/icons/20px/search-text.svg +16 -0
  1200. package/src/styles/icons/20px/search.svg +13 -0
  1201. package/src/styles/icons/20px/segmented-control.svg +10 -0
  1202. package/src/styles/icons/20px/select.svg +14 -0
  1203. package/src/styles/icons/20px/selection.svg +11 -0
  1204. package/src/styles/icons/20px/send-to-graph.svg +17 -0
  1205. package/src/styles/icons/20px/send-to-map.svg +15 -0
  1206. package/src/styles/icons/20px/send-to.svg +18 -0
  1207. package/src/styles/icons/20px/series-add.svg +9 -0
  1208. package/src/styles/icons/20px/series-configuration.svg +17 -0
  1209. package/src/styles/icons/20px/series-derived.svg +11 -0
  1210. package/src/styles/icons/20px/series-filtered.svg +11 -0
  1211. package/src/styles/icons/20px/series-search.svg +14 -0
  1212. package/src/styles/icons/20px/settings.svg +14 -0
  1213. package/src/styles/icons/20px/share.svg +13 -0
  1214. package/src/styles/icons/20px/shield.svg +10 -0
  1215. package/src/styles/icons/20px/shop.svg +14 -0
  1216. package/src/styles/icons/20px/shopping-cart.svg +13 -0
  1217. package/src/styles/icons/20px/sim-card.svg +12 -0
  1218. package/src/styles/icons/20px/slash.svg +11 -0
  1219. package/src/styles/icons/20px/small-cross.svg +13 -0
  1220. package/src/styles/icons/20px/small-minus.svg +11 -0
  1221. package/src/styles/icons/20px/small-plus.svg +11 -0
  1222. package/src/styles/icons/20px/small-tick.svg +12 -0
  1223. package/src/styles/icons/20px/snowflake.svg +12 -0
  1224. package/src/styles/icons/20px/social-media.svg +12 -0
  1225. package/src/styles/icons/20px/sort-alphabetical-desc.svg +14 -0
  1226. package/src/styles/icons/20px/sort-alphabetical.svg +14 -0
  1227. package/src/styles/icons/20px/sort-asc.svg +15 -0
  1228. package/src/styles/icons/20px/sort-desc.svg +15 -0
  1229. package/src/styles/icons/20px/sort-numerical-desc.svg +25 -0
  1230. package/src/styles/icons/20px/sort-numerical.svg +26 -0
  1231. package/src/styles/icons/20px/sort.svg +15 -0
  1232. package/src/styles/icons/20px/split-columns.svg +16 -0
  1233. package/src/styles/icons/20px/square.svg +12 -0
  1234. package/src/styles/icons/20px/stacked-chart.svg +13 -0
  1235. package/src/styles/icons/20px/star-empty.svg +8 -0
  1236. package/src/styles/icons/20px/star.svg +8 -0
  1237. package/src/styles/icons/20px/step-backward.svg +12 -0
  1238. package/src/styles/icons/20px/step-chart.svg +12 -0
  1239. package/src/styles/icons/20px/step-forward.svg +12 -0
  1240. package/src/styles/icons/20px/stop.svg +11 -0
  1241. package/src/styles/icons/20px/strikethrough.svg +22 -0
  1242. package/src/styles/icons/20px/style.svg +13 -0
  1243. package/src/styles/icons/20px/swap-horizontal.svg +16 -0
  1244. package/src/styles/icons/20px/swap-vertical.svg +16 -0
  1245. package/src/styles/icons/20px/symbol-circle.svg +10 -0
  1246. package/src/styles/icons/20px/symbol-cross.svg +11 -0
  1247. package/src/styles/icons/20px/symbol-diamond.svg +13 -0
  1248. package/src/styles/icons/20px/symbol-square.svg +11 -0
  1249. package/src/styles/icons/20px/symbol-triangle-down.svg +11 -0
  1250. package/src/styles/icons/20px/symbol-triangle-up.svg +12 -0
  1251. package/src/styles/icons/20px/tag.svg +10 -0
  1252. package/src/styles/icons/20px/take-action.svg +15 -0
  1253. package/src/styles/icons/20px/taxi.svg +12 -0
  1254. package/src/styles/icons/20px/text-highlight.svg +14 -0
  1255. package/src/styles/icons/20px/th-derived.svg +18 -0
  1256. package/src/styles/icons/20px/th-filtered.svg +10 -0
  1257. package/src/styles/icons/20px/th-list.svg +15 -0
  1258. package/src/styles/icons/20px/th.svg +16 -0
  1259. package/src/styles/icons/20px/thumbs-down.svg +17 -0
  1260. package/src/styles/icons/20px/thumbs-up.svg +17 -0
  1261. package/src/styles/icons/20px/tick-circle.svg +10 -0
  1262. package/src/styles/icons/20px/tick.svg +12 -0
  1263. package/src/styles/icons/20px/time.svg +13 -0
  1264. package/src/styles/icons/20px/timeline-area-chart.svg +12 -0
  1265. package/src/styles/icons/20px/timeline-bar-chart.svg +13 -0
  1266. package/src/styles/icons/20px/timeline-events.svg +18 -0
  1267. package/src/styles/icons/20px/timeline-line-chart.svg +14 -0
  1268. package/src/styles/icons/20px/tint.svg +11 -0
  1269. package/src/styles/icons/20px/torch.svg +13 -0
  1270. package/src/styles/icons/20px/train.svg +9 -0
  1271. package/src/styles/icons/20px/translate.svg +17 -0
  1272. package/src/styles/icons/20px/trash.svg +15 -0
  1273. package/src/styles/icons/20px/tree.svg +12 -0
  1274. package/src/styles/icons/20px/trending-down.svg +13 -0
  1275. package/src/styles/icons/20px/trending-up.svg +13 -0
  1276. package/src/styles/icons/20px/two-columns.svg +14 -0
  1277. package/src/styles/icons/20px/underline.svg +12 -0
  1278. package/src/styles/icons/20px/undo.svg +13 -0
  1279. package/src/styles/icons/20px/ungroup-objects.svg +12 -0
  1280. package/src/styles/icons/20px/unknown-vehicle.svg +33 -0
  1281. package/src/styles/icons/20px/unlock.svg +12 -0
  1282. package/src/styles/icons/20px/unpin.svg +13 -0
  1283. package/src/styles/icons/20px/unresolve.svg +20 -0
  1284. package/src/styles/icons/20px/updated.svg +10 -0
  1285. package/src/styles/icons/20px/upload.svg +13 -0
  1286. package/src/styles/icons/20px/user.svg +28 -0
  1287. package/src/styles/icons/20px/variable.svg +24 -0
  1288. package/src/styles/icons/20px/vertical-bar-chart-asc.svg +13 -0
  1289. package/src/styles/icons/20px/vertical-bar-chart-desc.svg +13 -0
  1290. package/src/styles/icons/20px/vertical-distribution.svg +12 -0
  1291. package/src/styles/icons/20px/video.svg +11 -0
  1292. package/src/styles/icons/20px/volume-down.svg +12 -0
  1293. package/src/styles/icons/20px/volume-off.svg +11 -0
  1294. package/src/styles/icons/20px/volume-up.svg +14 -0
  1295. package/src/styles/icons/20px/walk.svg +11 -0
  1296. package/src/styles/icons/20px/warning-sign.svg +13 -0
  1297. package/src/styles/icons/20px/waterfall-chart.svg +14 -0
  1298. package/src/styles/icons/20px/widget-button.svg +13 -0
  1299. package/src/styles/icons/20px/widget-footer.svg +7 -0
  1300. package/src/styles/icons/20px/widget-header.svg +7 -0
  1301. package/src/styles/icons/20px/widget.svg +14 -0
  1302. package/src/styles/icons/20px/wrench.svg +12 -0
  1303. package/src/styles/icons/20px/zoom-in.svg +15 -0
  1304. package/src/styles/icons/20px/zoom-out.svg +14 -0
  1305. package/src/styles/icons/20px/zoom-to-fit.svg +21 -0
  1306. package/src/styles/tailwind/_base.scss +56165 -0
  1307. package/src/styles/tailwind/tailwind.config.js +412 -0
  1308. package/src/types.ts +3 -0
  1309. package/tsconfig.build.json +15 -0
  1310. package/tsconfig.json +10 -0
  1311. package/yarn.lock +16891 -0
  1312. package/AutoSizer/index.js +0 -6
  1313. package/AutoSizer/index.js.map +0 -1
  1314. package/CodeEditor/index.d.ts +0 -12
  1315. package/CodeEditor/index.js +0 -21
  1316. package/CodeEditor/index.js.map +0 -1
  1317. package/CodeEditor/utils/highlightCode.js +0 -54
  1318. package/CodeEditor/utils/highlightCode.js.map +0 -1
  1319. package/CodeViewer/index.d.ts +0 -10
  1320. package/CodeViewer/index.js +0 -28
  1321. package/CodeViewer/index.js.map +0 -1
  1322. package/CodeViewer/types.d.ts +0 -9
  1323. package/CodeViewer/types.js.map +0 -1
  1324. package/Dropdown/Dropdown.js +0 -28
  1325. package/Dropdown/Dropdown.js.map +0 -1
  1326. package/FAIcon/index.js +0 -36
  1327. package/FAIcon/index.js.map +0 -1
  1328. package/FormButton/index.js +0 -13
  1329. package/FormButton/index.js.map +0 -1
  1330. package/FormError/index.js +0 -22
  1331. package/FormError/index.js.map +0 -1
  1332. package/FormInput/index.js +0 -44
  1333. package/FormInput/index.js.map +0 -1
  1334. package/ScrollContainer/index.js +0 -91
  1335. package/ScrollContainer/index.js.map +0 -1
  1336. package/ScrollList/index.js +0 -42
  1337. package/ScrollList/index.js.map +0 -1
  1338. package/SecretInput/index.js +0 -22
  1339. package/SecretInput/index.js.map +0 -1
  1340. package/SimpleTabs/Tab.js +0 -14
  1341. package/SimpleTabs/Tab.js.map +0 -1
  1342. package/SimpleTabs/TabList.js +0 -14
  1343. package/SimpleTabs/TabList.js.map +0 -1
  1344. package/SimpleTabs/TabPanel.js +0 -14
  1345. package/SimpleTabs/TabPanel.js.map +0 -1
  1346. package/TableOfContents/index.d.ts +0 -19
  1347. package/TableOfContents/index.js +0 -85
  1348. package/TableOfContents/index.js.map +0 -1
  1349. package/TableOfContents/types.d.ts +0 -14
  1350. package/TableOfContents/types.js +0 -3
  1351. package/TableOfContents/types.js.map +0 -1
  1352. package/ThemeContainer/index.js +0 -11
  1353. package/ThemeContainer/index.js.map +0 -1
  1354. package/_hooks/useIsMobile.js +0 -23
  1355. package/_hooks/useIsMobile.js.map +0 -1
  1356. package/_hooks/useValidateSchema.js +0 -26
  1357. package/_hooks/useValidateSchema.js.map +0 -1
  1358. package/classes.d.ts +0 -222
  1359. package/classes.js +0 -6
  1360. package/classes.js.map +0 -1
  1361. package/index.d.ts +0 -13
  1362. package/index.js +0 -18
  1363. package/index.js.map +0 -1
  1364. package/styles/_blueprint.scss +0 -16
  1365. package/styles/_components.scss +0 -6
  1366. package/styles/blueprint/_variables.scss +0 -122
  1367. package/styles/components/Code/_base.scss +0 -174
  1368. package/styles/components/TableOfContents/_base.scss +0 -43
  1369. package/styles/tailwind/_base.scss +0 -55405
  1370. package/styles/tailwind/tailwind.config.js +0 -411
  1371. package/types.js +0 -3
  1372. package/withErrorBoundary.d.ts +0 -104
  1373. package/withErrorBoundary.js +0 -51
  1374. package/withErrorBoundary.js.map +0 -1
  1375. /package/{AutoSizer → dist/AutoSizer}/index.d.ts +0 -0
  1376. /package/{CodeEditor → dist/CodeEditor}/utils/highlightCode.d.ts +0 -0
  1377. /package/{Dropdown → dist/Dropdown}/Dropdown.d.ts +0 -0
  1378. /package/{FAIcon → dist/FAIcon}/index.d.ts +0 -0
  1379. /package/{FormButton → dist/FormButton}/index.d.ts +0 -0
  1380. /package/{FormError → dist/FormError}/index.d.ts +0 -0
  1381. /package/{FormInput → dist/FormInput}/index.d.ts +0 -0
  1382. /package/{Icons → dist/Icons}/index.d.ts +0 -0
  1383. /package/{Icons → dist/Icons}/index.js +0 -0
  1384. /package/{Icons → dist/Icons}/index.js.map +0 -0
  1385. /package/{ScrollContainer → dist/ScrollContainer}/index.d.ts +0 -0
  1386. /package/{ScrollList → dist/ScrollList}/index.d.ts +0 -0
  1387. /package/{SecretInput → dist/SecretInput}/index.d.ts +0 -0
  1388. /package/{Select → dist/Select}/index.d.ts +0 -0
  1389. /package/{Select → dist/Select}/index.js +0 -0
  1390. /package/{Select → dist/Select}/index.js.map +0 -0
  1391. /package/{SimpleTabs → dist/SimpleTabs}/Tab.d.ts +0 -0
  1392. /package/{SimpleTabs → dist/SimpleTabs}/TabList.d.ts +0 -0
  1393. /package/{SimpleTabs → dist/SimpleTabs}/TabPanel.d.ts +0 -0
  1394. /package/{SimpleTabs → dist/SimpleTabs}/index.d.ts +0 -0
  1395. /package/{SimpleTabs → dist/SimpleTabs}/index.js +0 -0
  1396. /package/{SimpleTabs → dist/SimpleTabs}/index.js.map +0 -0
  1397. /package/{ThemeContainer → dist/ThemeContainer}/index.d.ts +0 -0
  1398. /package/{_hooks → dist/_hooks}/useIsMobile.d.ts +0 -0
  1399. /package/{_hooks → dist/_hooks}/useValidateSchema.d.ts +0 -0
  1400. /package/{colors.d.ts → dist/colors.d.ts} +0 -0
  1401. /package/{colors.js → dist/colors.js} +0 -0
  1402. /package/{colors.js.map → dist/colors.js.map} +0 -0
  1403. /package/{styles → dist/styles}/_monaco.scss +0 -0
  1404. /package/{styles → dist/styles}/_tailwind.scss +0 -0
  1405. /package/{styles → dist/styles}/_ui-kit.scss +0 -0
  1406. /package/{styles → dist/styles}/blueprint/_color-aliases.scss +0 -0
  1407. /package/{styles → dist/styles}/blueprint/_colors.scss +0 -0
  1408. /package/{styles → dist/styles}/common/_css-variables.scss +0 -0
  1409. /package/{styles → dist/styles}/common/_theme.scss +0 -0
  1410. /package/{styles → dist/styles}/common/_utils.scss +0 -0
  1411. /package/{styles → dist/styles}/common/_variables.scss +0 -0
  1412. /package/{styles → dist/styles}/components/Code/_theme-dark.scss +0 -0
  1413. /package/{styles → dist/styles}/components/Code/_theme-light.scss +0 -0
  1414. /package/{styles → dist/styles}/components/Dialog/_base.scss +0 -0
  1415. /package/{styles → dist/styles}/components/Dropdown/_base.scss +0 -0
  1416. /package/{styles → dist/styles}/components/FormGroup/_base.scss +0 -0
  1417. /package/{styles → dist/styles}/components/ScrollContainer/_base.scss +0 -0
  1418. /package/{styles → dist/styles}/components/SimpleTabs/_base.scss +0 -0
  1419. /package/{styles → dist/styles}/components/_base.scss +0 -0
  1420. /package/{styles → dist/styles}/fonts/icons-16.eot +0 -0
  1421. /package/{styles → dist/styles}/fonts/icons-16.ttf +0 -0
  1422. /package/{styles → dist/styles}/fonts/icons-16.woff +0 -0
  1423. /package/{styles → dist/styles}/fonts/icons-20.eot +0 -0
  1424. /package/{styles → dist/styles}/fonts/icons-20.ttf +0 -0
  1425. /package/{styles → dist/styles}/fonts/icons-20.woff +0 -0
  1426. /package/{styles → dist/styles}/fonts/icons.json +0 -0
  1427. /package/{styles → dist/styles}/icons/16px/add-column-left.svg +0 -0
  1428. /package/{styles → dist/styles}/icons/16px/add-column-right.svg +0 -0
  1429. /package/{styles → dist/styles}/icons/16px/add-row-bottom.svg +0 -0
  1430. /package/{styles → dist/styles}/icons/16px/add-row-top.svg +0 -0
  1431. /package/{styles → dist/styles}/icons/16px/add-to-artifact.svg +0 -0
  1432. /package/{styles → dist/styles}/icons/16px/add-to-folder.svg +0 -0
  1433. /package/{styles → dist/styles}/icons/16px/add.svg +0 -0
  1434. /package/{styles → dist/styles}/icons/16px/airplane.svg +0 -0
  1435. /package/{styles → dist/styles}/icons/16px/align-center.svg +0 -0
  1436. /package/{styles → dist/styles}/icons/16px/align-justify.svg +0 -0
  1437. /package/{styles → dist/styles}/icons/16px/align-left.svg +0 -0
  1438. /package/{styles → dist/styles}/icons/16px/align-right.svg +0 -0
  1439. /package/{styles → dist/styles}/icons/16px/alignment-bottom.svg +0 -0
  1440. /package/{styles → dist/styles}/icons/16px/alignment-horizontal-center.svg +0 -0
  1441. /package/{styles → dist/styles}/icons/16px/alignment-left.svg +0 -0
  1442. /package/{styles → dist/styles}/icons/16px/alignment-right.svg +0 -0
  1443. /package/{styles → dist/styles}/icons/16px/alignment-top.svg +0 -0
  1444. /package/{styles → dist/styles}/icons/16px/alignment-vertical-center.svg +0 -0
  1445. /package/{styles → dist/styles}/icons/16px/annotation.svg +0 -0
  1446. /package/{styles → dist/styles}/icons/16px/application.svg +0 -0
  1447. /package/{styles → dist/styles}/icons/16px/applications.svg +0 -0
  1448. /package/{styles → dist/styles}/icons/16px/arrow-bottom-left.svg +0 -0
  1449. /package/{styles → dist/styles}/icons/16px/arrow-bottom-right.svg +0 -0
  1450. /package/{styles → dist/styles}/icons/16px/arrow-down.svg +0 -0
  1451. /package/{styles → dist/styles}/icons/16px/arrow-left.svg +0 -0
  1452. /package/{styles → dist/styles}/icons/16px/arrow-right.svg +0 -0
  1453. /package/{styles → dist/styles}/icons/16px/arrow-top-left.svg +0 -0
  1454. /package/{styles → dist/styles}/icons/16px/arrow-top-right.svg +0 -0
  1455. /package/{styles → dist/styles}/icons/16px/arrow-up.svg +0 -0
  1456. /package/{styles → dist/styles}/icons/16px/arrows-horizontal.svg +0 -0
  1457. /package/{styles → dist/styles}/icons/16px/arrows-vertical.svg +0 -0
  1458. /package/{styles → dist/styles}/icons/16px/asterisk.svg +0 -0
  1459. /package/{styles → dist/styles}/icons/16px/automatic-updates.svg +0 -0
  1460. /package/{styles → dist/styles}/icons/16px/badge.svg +0 -0
  1461. /package/{styles → dist/styles}/icons/16px/ban-circle.svg +0 -0
  1462. /package/{styles → dist/styles}/icons/16px/bank-account.svg +0 -0
  1463. /package/{styles → dist/styles}/icons/16px/barcode.svg +0 -0
  1464. /package/{styles → dist/styles}/icons/16px/blank.svg +0 -0
  1465. /package/{styles → dist/styles}/icons/16px/blocked-person.svg +0 -0
  1466. /package/{styles → dist/styles}/icons/16px/bold.svg +0 -0
  1467. /package/{styles → dist/styles}/icons/16px/book.svg +0 -0
  1468. /package/{styles → dist/styles}/icons/16px/bookmark.svg +0 -0
  1469. /package/{styles → dist/styles}/icons/16px/box.svg +0 -0
  1470. /package/{styles → dist/styles}/icons/16px/briefcase.svg +0 -0
  1471. /package/{styles → dist/styles}/icons/16px/build.svg +0 -0
  1472. /package/{styles → dist/styles}/icons/16px/calculator.svg +0 -0
  1473. /package/{styles → dist/styles}/icons/16px/calendar.svg +0 -0
  1474. /package/{styles → dist/styles}/icons/16px/camera.svg +0 -0
  1475. /package/{styles → dist/styles}/icons/16px/caret-down.svg +0 -0
  1476. /package/{styles → dist/styles}/icons/16px/caret-left.svg +0 -0
  1477. /package/{styles → dist/styles}/icons/16px/caret-right.svg +0 -0
  1478. /package/{styles → dist/styles}/icons/16px/caret-up.svg +0 -0
  1479. /package/{styles → dist/styles}/icons/16px/cell-tower.svg +0 -0
  1480. /package/{styles → dist/styles}/icons/16px/changes.svg +0 -0
  1481. /package/{styles → dist/styles}/icons/16px/chart.svg +0 -0
  1482. /package/{styles → dist/styles}/icons/16px/chat.svg +0 -0
  1483. /package/{styles → dist/styles}/icons/16px/chevron-backward.svg +0 -0
  1484. /package/{styles → dist/styles}/icons/16px/chevron-down.svg +0 -0
  1485. /package/{styles → dist/styles}/icons/16px/chevron-forward.svg +0 -0
  1486. /package/{styles → dist/styles}/icons/16px/chevron-left.svg +0 -0
  1487. /package/{styles → dist/styles}/icons/16px/chevron-right.svg +0 -0
  1488. /package/{styles → dist/styles}/icons/16px/chevron-up.svg +0 -0
  1489. /package/{styles → dist/styles}/icons/16px/circle-arrow-down.svg +0 -0
  1490. /package/{styles → dist/styles}/icons/16px/circle-arrow-left.svg +0 -0
  1491. /package/{styles → dist/styles}/icons/16px/circle-arrow-right.svg +0 -0
  1492. /package/{styles → dist/styles}/icons/16px/circle-arrow-up.svg +0 -0
  1493. /package/{styles → dist/styles}/icons/16px/circle.svg +0 -0
  1494. /package/{styles → dist/styles}/icons/16px/citation.svg +0 -0
  1495. /package/{styles → dist/styles}/icons/16px/clean.svg +0 -0
  1496. /package/{styles → dist/styles}/icons/16px/clipboard.svg +0 -0
  1497. /package/{styles → dist/styles}/icons/16px/cloud-download.svg +0 -0
  1498. /package/{styles → dist/styles}/icons/16px/cloud-upload.svg +0 -0
  1499. /package/{styles → dist/styles}/icons/16px/cloud.svg +0 -0
  1500. /package/{styles → dist/styles}/icons/16px/code-block.svg +0 -0
  1501. /package/{styles → dist/styles}/icons/16px/code.svg +0 -0
  1502. /package/{styles → dist/styles}/icons/16px/cog.svg +0 -0
  1503. /package/{styles → dist/styles}/icons/16px/collapse-all.svg +0 -0
  1504. /package/{styles → dist/styles}/icons/16px/column-layout.svg +0 -0
  1505. /package/{styles → dist/styles}/icons/16px/comment.svg +0 -0
  1506. /package/{styles → dist/styles}/icons/16px/comparison.svg +0 -0
  1507. /package/{styles → dist/styles}/icons/16px/compass.svg +0 -0
  1508. /package/{styles → dist/styles}/icons/16px/compressed.svg +0 -0
  1509. /package/{styles → dist/styles}/icons/16px/confirm.svg +0 -0
  1510. /package/{styles → dist/styles}/icons/16px/console.svg +0 -0
  1511. /package/{styles → dist/styles}/icons/16px/contrast.svg +0 -0
  1512. /package/{styles → dist/styles}/icons/16px/control.svg +0 -0
  1513. /package/{styles → dist/styles}/icons/16px/credit-card.svg +0 -0
  1514. /package/{styles → dist/styles}/icons/16px/cross.svg +0 -0
  1515. /package/{styles → dist/styles}/icons/16px/crown.svg +0 -0
  1516. /package/{styles → dist/styles}/icons/16px/cube-add.svg +0 -0
  1517. /package/{styles → dist/styles}/icons/16px/cube-remove.svg +0 -0
  1518. /package/{styles → dist/styles}/icons/16px/cube.svg +0 -0
  1519. /package/{styles → dist/styles}/icons/16px/curved-range-chart.svg +0 -0
  1520. /package/{styles → dist/styles}/icons/16px/cut.svg +0 -0
  1521. /package/{styles → dist/styles}/icons/16px/dashboard.svg +0 -0
  1522. /package/{styles → dist/styles}/icons/16px/database.svg +0 -0
  1523. /package/{styles → dist/styles}/icons/16px/delete.svg +0 -0
  1524. /package/{styles → dist/styles}/icons/16px/delta.svg +0 -0
  1525. /package/{styles → dist/styles}/icons/16px/derive-column.svg +0 -0
  1526. /package/{styles → dist/styles}/icons/16px/desktop.svg +0 -0
  1527. /package/{styles → dist/styles}/icons/16px/diagram-tree.svg +0 -0
  1528. /package/{styles → dist/styles}/icons/16px/direction-left.svg +0 -0
  1529. /package/{styles → dist/styles}/icons/16px/direction-right.svg +0 -0
  1530. /package/{styles → dist/styles}/icons/16px/disable.svg +0 -0
  1531. /package/{styles → dist/styles}/icons/16px/document-open.svg +0 -0
  1532. /package/{styles → dist/styles}/icons/16px/document-share.svg +0 -0
  1533. /package/{styles → dist/styles}/icons/16px/document.svg +0 -0
  1534. /package/{styles → dist/styles}/icons/16px/dollar.svg +0 -0
  1535. /package/{styles → dist/styles}/icons/16px/dot.svg +0 -0
  1536. /package/{styles → dist/styles}/icons/16px/double-caret-horizontal.svg +0 -0
  1537. /package/{styles → dist/styles}/icons/16px/double-caret-vertical.svg +0 -0
  1538. /package/{styles → dist/styles}/icons/16px/double-chevron-down.svg +0 -0
  1539. /package/{styles → dist/styles}/icons/16px/double-chevron-left.svg +0 -0
  1540. /package/{styles → dist/styles}/icons/16px/double-chevron-right.svg +0 -0
  1541. /package/{styles → dist/styles}/icons/16px/double-chevron-up.svg +0 -0
  1542. /package/{styles → dist/styles}/icons/16px/doughnut-chart.svg +0 -0
  1543. /package/{styles → dist/styles}/icons/16px/download.svg +0 -0
  1544. /package/{styles → dist/styles}/icons/16px/drag-handle-horizontal.svg +0 -0
  1545. /package/{styles → dist/styles}/icons/16px/drag-handle-vertical.svg +0 -0
  1546. /package/{styles → dist/styles}/icons/16px/draw.svg +0 -0
  1547. /package/{styles → dist/styles}/icons/16px/drive-time.svg +0 -0
  1548. /package/{styles → dist/styles}/icons/16px/duplicate.svg +0 -0
  1549. /package/{styles → dist/styles}/icons/16px/edit.svg +0 -0
  1550. /package/{styles → dist/styles}/icons/16px/eject.svg +0 -0
  1551. /package/{styles → dist/styles}/icons/16px/endorsed.svg +0 -0
  1552. /package/{styles → dist/styles}/icons/16px/envelope.svg +0 -0
  1553. /package/{styles → dist/styles}/icons/16px/eraser.svg +0 -0
  1554. /package/{styles → dist/styles}/icons/16px/error.svg +0 -0
  1555. /package/{styles → dist/styles}/icons/16px/euro.svg +0 -0
  1556. /package/{styles → dist/styles}/icons/16px/exchange.svg +0 -0
  1557. /package/{styles → dist/styles}/icons/16px/exclude-row.svg +0 -0
  1558. /package/{styles → dist/styles}/icons/16px/expand-all.svg +0 -0
  1559. /package/{styles → dist/styles}/icons/16px/export.svg +0 -0
  1560. /package/{styles → dist/styles}/icons/16px/eye-off.svg +0 -0
  1561. /package/{styles → dist/styles}/icons/16px/eye-on.svg +0 -0
  1562. /package/{styles → dist/styles}/icons/16px/eye-open.svg +0 -0
  1563. /package/{styles → dist/styles}/icons/16px/fast-backward.svg +0 -0
  1564. /package/{styles → dist/styles}/icons/16px/fast-forward.svg +0 -0
  1565. /package/{styles → dist/styles}/icons/16px/feed-subscribed.svg +0 -0
  1566. /package/{styles → dist/styles}/icons/16px/feed.svg +0 -0
  1567. /package/{styles → dist/styles}/icons/16px/film.svg +0 -0
  1568. /package/{styles → dist/styles}/icons/16px/filter-keep.svg +0 -0
  1569. /package/{styles → dist/styles}/icons/16px/filter-list.svg +0 -0
  1570. /package/{styles → dist/styles}/icons/16px/filter-remove.svg +0 -0
  1571. /package/{styles → dist/styles}/icons/16px/filter.svg +0 -0
  1572. /package/{styles → dist/styles}/icons/16px/flag.svg +0 -0
  1573. /package/{styles → dist/styles}/icons/16px/flame.svg +0 -0
  1574. /package/{styles → dist/styles}/icons/16px/flash.svg +0 -0
  1575. /package/{styles → dist/styles}/icons/16px/floppy-disk.svg +0 -0
  1576. /package/{styles → dist/styles}/icons/16px/flow-branch.svg +0 -0
  1577. /package/{styles → dist/styles}/icons/16px/flow-end.svg +0 -0
  1578. /package/{styles → dist/styles}/icons/16px/flow-linear.svg +0 -0
  1579. /package/{styles → dist/styles}/icons/16px/flow-review-branch.svg +0 -0
  1580. /package/{styles → dist/styles}/icons/16px/flow-review.svg +0 -0
  1581. /package/{styles → dist/styles}/icons/16px/flows.svg +0 -0
  1582. /package/{styles → dist/styles}/icons/16px/folder-close.svg +0 -0
  1583. /package/{styles → dist/styles}/icons/16px/folder-new.svg +0 -0
  1584. /package/{styles → dist/styles}/icons/16px/folder-open.svg +0 -0
  1585. /package/{styles → dist/styles}/icons/16px/folder-shared-open.svg +0 -0
  1586. /package/{styles → dist/styles}/icons/16px/folder-shared.svg +0 -0
  1587. /package/{styles → dist/styles}/icons/16px/follower.svg +0 -0
  1588. /package/{styles → dist/styles}/icons/16px/following.svg +0 -0
  1589. /package/{styles → dist/styles}/icons/16px/font.svg +0 -0
  1590. /package/{styles → dist/styles}/icons/16px/fork.svg +0 -0
  1591. /package/{styles → dist/styles}/icons/16px/form.svg +0 -0
  1592. /package/{styles → dist/styles}/icons/16px/full-circle.svg +0 -0
  1593. /package/{styles → dist/styles}/icons/16px/full-stacked-chart.svg +0 -0
  1594. /package/{styles → dist/styles}/icons/16px/fullscreen.svg +0 -0
  1595. /package/{styles → dist/styles}/icons/16px/function.svg +0 -0
  1596. /package/{styles → dist/styles}/icons/16px/gantt-chart.svg +0 -0
  1597. /package/{styles → dist/styles}/icons/16px/geolocation.svg +0 -0
  1598. /package/{styles → dist/styles}/icons/16px/geosearch.svg +0 -0
  1599. /package/{styles → dist/styles}/icons/16px/git-branch.svg +0 -0
  1600. /package/{styles → dist/styles}/icons/16px/git-commit.svg +0 -0
  1601. /package/{styles → dist/styles}/icons/16px/git-merge.svg +0 -0
  1602. /package/{styles → dist/styles}/icons/16px/git-new-branch.svg +0 -0
  1603. /package/{styles → dist/styles}/icons/16px/git-pull.svg +0 -0
  1604. /package/{styles → dist/styles}/icons/16px/git-push.svg +0 -0
  1605. /package/{styles → dist/styles}/icons/16px/git-repo.svg +0 -0
  1606. /package/{styles → dist/styles}/icons/16px/glass.svg +0 -0
  1607. /package/{styles → dist/styles}/icons/16px/globe-network.svg +0 -0
  1608. /package/{styles → dist/styles}/icons/16px/globe.svg +0 -0
  1609. /package/{styles → dist/styles}/icons/16px/graph-remove.svg +0 -0
  1610. /package/{styles → dist/styles}/icons/16px/graph.svg +0 -0
  1611. /package/{styles → dist/styles}/icons/16px/grid-view.svg +0 -0
  1612. /package/{styles → dist/styles}/icons/16px/grid.svg +0 -0
  1613. /package/{styles → dist/styles}/icons/16px/group-objects.svg +0 -0
  1614. /package/{styles → dist/styles}/icons/16px/grouped-bar-chart.svg +0 -0
  1615. /package/{styles → dist/styles}/icons/16px/hand-down.svg +0 -0
  1616. /package/{styles → dist/styles}/icons/16px/hand-left.svg +0 -0
  1617. /package/{styles → dist/styles}/icons/16px/hand-right.svg +0 -0
  1618. /package/{styles → dist/styles}/icons/16px/hand-up.svg +0 -0
  1619. /package/{styles → dist/styles}/icons/16px/hand.svg +0 -0
  1620. /package/{styles → dist/styles}/icons/16px/header-one.svg +0 -0
  1621. /package/{styles → dist/styles}/icons/16px/header-two.svg +0 -0
  1622. /package/{styles → dist/styles}/icons/16px/header.svg +0 -0
  1623. /package/{styles → dist/styles}/icons/16px/headset.svg +0 -0
  1624. /package/{styles → dist/styles}/icons/16px/heart-broken.svg +0 -0
  1625. /package/{styles → dist/styles}/icons/16px/heart.svg +0 -0
  1626. /package/{styles → dist/styles}/icons/16px/heat-grid.svg +0 -0
  1627. /package/{styles → dist/styles}/icons/16px/heatmap.svg +0 -0
  1628. /package/{styles → dist/styles}/icons/16px/help.svg +0 -0
  1629. /package/{styles → dist/styles}/icons/16px/helper-management.svg +0 -0
  1630. /package/{styles → dist/styles}/icons/16px/highlight.svg +0 -0
  1631. /package/{styles → dist/styles}/icons/16px/history.svg +0 -0
  1632. /package/{styles → dist/styles}/icons/16px/home.svg +0 -0
  1633. /package/{styles → dist/styles}/icons/16px/horizontal-bar-chart-asc.svg +0 -0
  1634. /package/{styles → dist/styles}/icons/16px/horizontal-bar-chart-desc.svg +0 -0
  1635. /package/{styles → dist/styles}/icons/16px/horizontal-bar-chart.svg +0 -0
  1636. /package/{styles → dist/styles}/icons/16px/horizontal-distribution.svg +0 -0
  1637. /package/{styles → dist/styles}/icons/16px/id-number.svg +0 -0
  1638. /package/{styles → dist/styles}/icons/16px/image-rotate-left.svg +0 -0
  1639. /package/{styles → dist/styles}/icons/16px/image-rotate-right.svg +0 -0
  1640. /package/{styles → dist/styles}/icons/16px/import.svg +0 -0
  1641. /package/{styles → dist/styles}/icons/16px/inbox-filtered.svg +0 -0
  1642. /package/{styles → dist/styles}/icons/16px/inbox-geo.svg +0 -0
  1643. /package/{styles → dist/styles}/icons/16px/inbox-search.svg +0 -0
  1644. /package/{styles → dist/styles}/icons/16px/inbox-update.svg +0 -0
  1645. /package/{styles → dist/styles}/icons/16px/inbox.svg +0 -0
  1646. /package/{styles → dist/styles}/icons/16px/info-sign.svg +0 -0
  1647. /package/{styles → dist/styles}/icons/16px/inner-join.svg +0 -0
  1648. /package/{styles → dist/styles}/icons/16px/insert.svg +0 -0
  1649. /package/{styles → dist/styles}/icons/16px/intersection.svg +0 -0
  1650. /package/{styles → dist/styles}/icons/16px/ip-address.svg +0 -0
  1651. /package/{styles → dist/styles}/icons/16px/issue-closed.svg +0 -0
  1652. /package/{styles → dist/styles}/icons/16px/issue-new.svg +0 -0
  1653. /package/{styles → dist/styles}/icons/16px/issue.svg +0 -0
  1654. /package/{styles → dist/styles}/icons/16px/italic.svg +0 -0
  1655. /package/{styles → dist/styles}/icons/16px/join-table.svg +0 -0
  1656. /package/{styles → dist/styles}/icons/16px/key-backspace.svg +0 -0
  1657. /package/{styles → dist/styles}/icons/16px/key-command.svg +0 -0
  1658. /package/{styles → dist/styles}/icons/16px/key-control.svg +0 -0
  1659. /package/{styles → dist/styles}/icons/16px/key-delete.svg +0 -0
  1660. /package/{styles → dist/styles}/icons/16px/key-enter.svg +0 -0
  1661. /package/{styles → dist/styles}/icons/16px/key-escape.svg +0 -0
  1662. /package/{styles → dist/styles}/icons/16px/key-option.svg +0 -0
  1663. /package/{styles → dist/styles}/icons/16px/key-shift.svg +0 -0
  1664. /package/{styles → dist/styles}/icons/16px/key-tab.svg +0 -0
  1665. /package/{styles → dist/styles}/icons/16px/key.svg +0 -0
  1666. /package/{styles → dist/styles}/icons/16px/known-vehicle.svg +0 -0
  1667. /package/{styles → dist/styles}/icons/16px/label.svg +0 -0
  1668. /package/{styles → dist/styles}/icons/16px/layer.svg +0 -0
  1669. /package/{styles → dist/styles}/icons/16px/layers.svg +0 -0
  1670. /package/{styles → dist/styles}/icons/16px/layout-auto.svg +0 -0
  1671. /package/{styles → dist/styles}/icons/16px/layout-balloon.svg +0 -0
  1672. /package/{styles → dist/styles}/icons/16px/layout-circle.svg +0 -0
  1673. /package/{styles → dist/styles}/icons/16px/layout-grid.svg +0 -0
  1674. /package/{styles → dist/styles}/icons/16px/layout-group-by.svg +0 -0
  1675. /package/{styles → dist/styles}/icons/16px/layout-hierarchy.svg +0 -0
  1676. /package/{styles → dist/styles}/icons/16px/layout-linear.svg +0 -0
  1677. /package/{styles → dist/styles}/icons/16px/layout-skew-grid.svg +0 -0
  1678. /package/{styles → dist/styles}/icons/16px/layout-sorted-clusters.svg +0 -0
  1679. /package/{styles → dist/styles}/icons/16px/layout.svg +0 -0
  1680. /package/{styles → dist/styles}/icons/16px/left-join.svg +0 -0
  1681. /package/{styles → dist/styles}/icons/16px/lifesaver.svg +0 -0
  1682. /package/{styles → dist/styles}/icons/16px/lightbulb.svg +0 -0
  1683. /package/{styles → dist/styles}/icons/16px/link.svg +0 -0
  1684. /package/{styles → dist/styles}/icons/16px/list-columns.svg +0 -0
  1685. /package/{styles → dist/styles}/icons/16px/list-detail-view.svg +0 -0
  1686. /package/{styles → dist/styles}/icons/16px/list.svg +0 -0
  1687. /package/{styles → dist/styles}/icons/16px/locate.svg +0 -0
  1688. /package/{styles → dist/styles}/icons/16px/lock.svg +0 -0
  1689. /package/{styles → dist/styles}/icons/16px/log-in.svg +0 -0
  1690. /package/{styles → dist/styles}/icons/16px/log-out.svg +0 -0
  1691. /package/{styles → dist/styles}/icons/16px/manual.svg +0 -0
  1692. /package/{styles → dist/styles}/icons/16px/manually-entered-data.svg +0 -0
  1693. /package/{styles → dist/styles}/icons/16px/map-create.svg +0 -0
  1694. /package/{styles → dist/styles}/icons/16px/map-marker.svg +0 -0
  1695. /package/{styles → dist/styles}/icons/16px/map.svg +0 -0
  1696. /package/{styles → dist/styles}/icons/16px/maximize.svg +0 -0
  1697. /package/{styles → dist/styles}/icons/16px/media.svg +0 -0
  1698. /package/{styles → dist/styles}/icons/16px/menu-closed.svg +0 -0
  1699. /package/{styles → dist/styles}/icons/16px/menu-open.svg +0 -0
  1700. /package/{styles → dist/styles}/icons/16px/menu.svg +0 -0
  1701. /package/{styles → dist/styles}/icons/16px/merge-columns.svg +0 -0
  1702. /package/{styles → dist/styles}/icons/16px/merge-links.svg +0 -0
  1703. /package/{styles → dist/styles}/icons/16px/minimize.svg +0 -0
  1704. /package/{styles → dist/styles}/icons/16px/minus.svg +0 -0
  1705. /package/{styles → dist/styles}/icons/16px/mobile-phone.svg +0 -0
  1706. /package/{styles → dist/styles}/icons/16px/mobile-video.svg +0 -0
  1707. /package/{styles → dist/styles}/icons/16px/moon.svg +0 -0
  1708. /package/{styles → dist/styles}/icons/16px/more.svg +0 -0
  1709. /package/{styles → dist/styles}/icons/16px/mountain.svg +0 -0
  1710. /package/{styles → dist/styles}/icons/16px/move.svg +0 -0
  1711. /package/{styles → dist/styles}/icons/16px/mugshot.svg +0 -0
  1712. /package/{styles → dist/styles}/icons/16px/multi-select.svg +0 -0
  1713. /package/{styles → dist/styles}/icons/16px/music.svg +0 -0
  1714. /package/{styles → dist/styles}/icons/16px/new-grid-item.svg +0 -0
  1715. /package/{styles → dist/styles}/icons/16px/new-link.svg +0 -0
  1716. /package/{styles → dist/styles}/icons/16px/new-object.svg +0 -0
  1717. /package/{styles → dist/styles}/icons/16px/new-person.svg +0 -0
  1718. /package/{styles → dist/styles}/icons/16px/new-prescription.svg +0 -0
  1719. /package/{styles → dist/styles}/icons/16px/new-text-box.svg +0 -0
  1720. /package/{styles → dist/styles}/icons/16px/ninja.svg +0 -0
  1721. /package/{styles → dist/styles}/icons/16px/notifications-updated.svg +0 -0
  1722. /package/{styles → dist/styles}/icons/16px/notifications.svg +0 -0
  1723. /package/{styles → dist/styles}/icons/16px/numbered-list.svg +0 -0
  1724. /package/{styles → dist/styles}/icons/16px/numerical.svg +0 -0
  1725. /package/{styles → dist/styles}/icons/16px/office.svg +0 -0
  1726. /package/{styles → dist/styles}/icons/16px/offline.svg +0 -0
  1727. /package/{styles → dist/styles}/icons/16px/oil-field.svg +0 -0
  1728. /package/{styles → dist/styles}/icons/16px/one-column.svg +0 -0
  1729. /package/{styles → dist/styles}/icons/16px/outdated.svg +0 -0
  1730. /package/{styles → dist/styles}/icons/16px/page-layout.svg +0 -0
  1731. /package/{styles → dist/styles}/icons/16px/panel-stats.svg +0 -0
  1732. /package/{styles → dist/styles}/icons/16px/panel-table.svg +0 -0
  1733. /package/{styles → dist/styles}/icons/16px/paperclip.svg +0 -0
  1734. /package/{styles → dist/styles}/icons/16px/paragraph.svg +0 -0
  1735. /package/{styles → dist/styles}/icons/16px/path-search.svg +0 -0
  1736. /package/{styles → dist/styles}/icons/16px/path.svg +0 -0
  1737. /package/{styles → dist/styles}/icons/16px/pause.svg +0 -0
  1738. /package/{styles → dist/styles}/icons/16px/people.svg +0 -0
  1739. /package/{styles → dist/styles}/icons/16px/percentage.svg +0 -0
  1740. /package/{styles → dist/styles}/icons/16px/person.svg +0 -0
  1741. /package/{styles → dist/styles}/icons/16px/phone.svg +0 -0
  1742. /package/{styles → dist/styles}/icons/16px/pie-chart.svg +0 -0
  1743. /package/{styles → dist/styles}/icons/16px/pin.svg +0 -0
  1744. /package/{styles → dist/styles}/icons/16px/pivot-table.svg +0 -0
  1745. /package/{styles → dist/styles}/icons/16px/pivot.svg +0 -0
  1746. /package/{styles → dist/styles}/icons/16px/play.svg +0 -0
  1747. /package/{styles → dist/styles}/icons/16px/plus.svg +0 -0
  1748. /package/{styles → dist/styles}/icons/16px/polygon-filter.svg +0 -0
  1749. /package/{styles → dist/styles}/icons/16px/power.svg +0 -0
  1750. /package/{styles → dist/styles}/icons/16px/predictive-analysis.svg +0 -0
  1751. /package/{styles → dist/styles}/icons/16px/prescription.svg +0 -0
  1752. /package/{styles → dist/styles}/icons/16px/presentation.svg +0 -0
  1753. /package/{styles → dist/styles}/icons/16px/print.svg +0 -0
  1754. /package/{styles → dist/styles}/icons/16px/projects.svg +0 -0
  1755. /package/{styles → dist/styles}/icons/16px/properties.svg +0 -0
  1756. /package/{styles → dist/styles}/icons/16px/property.svg +0 -0
  1757. /package/{styles → dist/styles}/icons/16px/publish-function.svg +0 -0
  1758. /package/{styles → dist/styles}/icons/16px/pulse.svg +0 -0
  1759. /package/{styles → dist/styles}/icons/16px/random.svg +0 -0
  1760. /package/{styles → dist/styles}/icons/16px/record.svg +0 -0
  1761. /package/{styles → dist/styles}/icons/16px/redo.svg +0 -0
  1762. /package/{styles → dist/styles}/icons/16px/refresh.svg +0 -0
  1763. /package/{styles → dist/styles}/icons/16px/regression-chart.svg +0 -0
  1764. /package/{styles → dist/styles}/icons/16px/remove-column-left.svg +0 -0
  1765. /package/{styles → dist/styles}/icons/16px/remove-column-right.svg +0 -0
  1766. /package/{styles → dist/styles}/icons/16px/remove-column.svg +0 -0
  1767. /package/{styles → dist/styles}/icons/16px/remove-row-bottom.svg +0 -0
  1768. /package/{styles → dist/styles}/icons/16px/remove-row-top.svg +0 -0
  1769. /package/{styles → dist/styles}/icons/16px/remove.svg +0 -0
  1770. /package/{styles → dist/styles}/icons/16px/repeat.svg +0 -0
  1771. /package/{styles → dist/styles}/icons/16px/resolve.svg +0 -0
  1772. /package/{styles → dist/styles}/icons/16px/rig.svg +0 -0
  1773. /package/{styles → dist/styles}/icons/16px/right-join.svg +0 -0
  1774. /package/{styles → dist/styles}/icons/16px/ring.svg +0 -0
  1775. /package/{styles → dist/styles}/icons/16px/rotate-document.svg +0 -0
  1776. /package/{styles → dist/styles}/icons/16px/rotate-page.svg +0 -0
  1777. /package/{styles → dist/styles}/icons/16px/satellite.svg +0 -0
  1778. /package/{styles → dist/styles}/icons/16px/saved.svg +0 -0
  1779. /package/{styles → dist/styles}/icons/16px/scatter-plot.svg +0 -0
  1780. /package/{styles → dist/styles}/icons/16px/search-around.svg +0 -0
  1781. /package/{styles → dist/styles}/icons/16px/search-template.svg +0 -0
  1782. /package/{styles → dist/styles}/icons/16px/search-text.svg +0 -0
  1783. /package/{styles → dist/styles}/icons/16px/search.svg +0 -0
  1784. /package/{styles → dist/styles}/icons/16px/segmented-control.svg +0 -0
  1785. /package/{styles → dist/styles}/icons/16px/select.svg +0 -0
  1786. /package/{styles → dist/styles}/icons/16px/selection.svg +0 -0
  1787. /package/{styles → dist/styles}/icons/16px/send-to-graph.svg +0 -0
  1788. /package/{styles → dist/styles}/icons/16px/send-to-map.svg +0 -0
  1789. /package/{styles → dist/styles}/icons/16px/send-to.svg +0 -0
  1790. /package/{styles → dist/styles}/icons/16px/series-add.svg +0 -0
  1791. /package/{styles → dist/styles}/icons/16px/series-configuration.svg +0 -0
  1792. /package/{styles → dist/styles}/icons/16px/series-derived.svg +0 -0
  1793. /package/{styles → dist/styles}/icons/16px/series-filtered.svg +0 -0
  1794. /package/{styles → dist/styles}/icons/16px/series-search.svg +0 -0
  1795. /package/{styles → dist/styles}/icons/16px/settings.svg +0 -0
  1796. /package/{styles → dist/styles}/icons/16px/share.svg +0 -0
  1797. /package/{styles → dist/styles}/icons/16px/shield.svg +0 -0
  1798. /package/{styles → dist/styles}/icons/16px/shop.svg +0 -0
  1799. /package/{styles → dist/styles}/icons/16px/shopping-cart.svg +0 -0
  1800. /package/{styles → dist/styles}/icons/16px/sim-card.svg +0 -0
  1801. /package/{styles → dist/styles}/icons/16px/slash.svg +0 -0
  1802. /package/{styles → dist/styles}/icons/16px/small-cross.svg +0 -0
  1803. /package/{styles → dist/styles}/icons/16px/small-minus.svg +0 -0
  1804. /package/{styles → dist/styles}/icons/16px/small-plus.svg +0 -0
  1805. /package/{styles → dist/styles}/icons/16px/small-tick.svg +0 -0
  1806. /package/{styles → dist/styles}/icons/16px/snowflake.svg +0 -0
  1807. /package/{styles → dist/styles}/icons/16px/social-media.svg +0 -0
  1808. /package/{styles → dist/styles}/icons/16px/sort-alphabetical-desc.svg +0 -0
  1809. /package/{styles → dist/styles}/icons/16px/sort-alphabetical.svg +0 -0
  1810. /package/{styles → dist/styles}/icons/16px/sort-asc.svg +0 -0
  1811. /package/{styles → dist/styles}/icons/16px/sort-desc.svg +0 -0
  1812. /package/{styles → dist/styles}/icons/16px/sort-numerical-desc.svg +0 -0
  1813. /package/{styles → dist/styles}/icons/16px/sort-numerical.svg +0 -0
  1814. /package/{styles → dist/styles}/icons/16px/sort.svg +0 -0
  1815. /package/{styles → dist/styles}/icons/16px/split-columns.svg +0 -0
  1816. /package/{styles → dist/styles}/icons/16px/square.svg +0 -0
  1817. /package/{styles → dist/styles}/icons/16px/stacked-chart.svg +0 -0
  1818. /package/{styles → dist/styles}/icons/16px/star-empty.svg +0 -0
  1819. /package/{styles → dist/styles}/icons/16px/star.svg +0 -0
  1820. /package/{styles → dist/styles}/icons/16px/step-backward.svg +0 -0
  1821. /package/{styles → dist/styles}/icons/16px/step-chart.svg +0 -0
  1822. /package/{styles → dist/styles}/icons/16px/step-forward.svg +0 -0
  1823. /package/{styles → dist/styles}/icons/16px/stop.svg +0 -0
  1824. /package/{styles → dist/styles}/icons/16px/strikethrough.svg +0 -0
  1825. /package/{styles → dist/styles}/icons/16px/style.svg +0 -0
  1826. /package/{styles → dist/styles}/icons/16px/swap-horizontal.svg +0 -0
  1827. /package/{styles → dist/styles}/icons/16px/swap-vertical.svg +0 -0
  1828. /package/{styles → dist/styles}/icons/16px/symbol-circle.svg +0 -0
  1829. /package/{styles → dist/styles}/icons/16px/symbol-cross.svg +0 -0
  1830. /package/{styles → dist/styles}/icons/16px/symbol-diamond.svg +0 -0
  1831. /package/{styles → dist/styles}/icons/16px/symbol-square.svg +0 -0
  1832. /package/{styles → dist/styles}/icons/16px/symbol-triangle-down.svg +0 -0
  1833. /package/{styles → dist/styles}/icons/16px/symbol-triangle-up.svg +0 -0
  1834. /package/{styles → dist/styles}/icons/16px/tag.svg +0 -0
  1835. /package/{styles → dist/styles}/icons/16px/take-action.svg +0 -0
  1836. /package/{styles → dist/styles}/icons/16px/taxi.svg +0 -0
  1837. /package/{styles → dist/styles}/icons/16px/text-highlight.svg +0 -0
  1838. /package/{styles → dist/styles}/icons/16px/th-derived.svg +0 -0
  1839. /package/{styles → dist/styles}/icons/16px/th-filtered.svg +0 -0
  1840. /package/{styles → dist/styles}/icons/16px/th-list.svg +0 -0
  1841. /package/{styles → dist/styles}/icons/16px/th.svg +0 -0
  1842. /package/{styles → dist/styles}/icons/16px/thumbs-down.svg +0 -0
  1843. /package/{styles → dist/styles}/icons/16px/thumbs-up.svg +0 -0
  1844. /package/{styles → dist/styles}/icons/16px/tick-circle.svg +0 -0
  1845. /package/{styles → dist/styles}/icons/16px/tick.svg +0 -0
  1846. /package/{styles → dist/styles}/icons/16px/time.svg +0 -0
  1847. /package/{styles → dist/styles}/icons/16px/timeline-area-chart.svg +0 -0
  1848. /package/{styles → dist/styles}/icons/16px/timeline-bar-chart.svg +0 -0
  1849. /package/{styles → dist/styles}/icons/16px/timeline-events.svg +0 -0
  1850. /package/{styles → dist/styles}/icons/16px/timeline-line-chart.svg +0 -0
  1851. /package/{styles → dist/styles}/icons/16px/tint.svg +0 -0
  1852. /package/{styles → dist/styles}/icons/16px/torch.svg +0 -0
  1853. /package/{styles → dist/styles}/icons/16px/train.svg +0 -0
  1854. /package/{styles → dist/styles}/icons/16px/translate.svg +0 -0
  1855. /package/{styles → dist/styles}/icons/16px/trash.svg +0 -0
  1856. /package/{styles → dist/styles}/icons/16px/tree.svg +0 -0
  1857. /package/{styles → dist/styles}/icons/16px/trending-down.svg +0 -0
  1858. /package/{styles → dist/styles}/icons/16px/trending-up.svg +0 -0
  1859. /package/{styles → dist/styles}/icons/16px/two-columns.svg +0 -0
  1860. /package/{styles → dist/styles}/icons/16px/underline.svg +0 -0
  1861. /package/{styles → dist/styles}/icons/16px/undo.svg +0 -0
  1862. /package/{styles → dist/styles}/icons/16px/ungroup-objects.svg +0 -0
  1863. /package/{styles → dist/styles}/icons/16px/unknown-vehicle.svg +0 -0
  1864. /package/{styles → dist/styles}/icons/16px/unlock.svg +0 -0
  1865. /package/{styles → dist/styles}/icons/16px/unpin.svg +0 -0
  1866. /package/{styles → dist/styles}/icons/16px/unresolve.svg +0 -0
  1867. /package/{styles → dist/styles}/icons/16px/updated.svg +0 -0
  1868. /package/{styles → dist/styles}/icons/16px/upload.svg +0 -0
  1869. /package/{styles → dist/styles}/icons/16px/user.svg +0 -0
  1870. /package/{styles → dist/styles}/icons/16px/variable.svg +0 -0
  1871. /package/{styles → dist/styles}/icons/16px/vertical-bar-chart-asc.svg +0 -0
  1872. /package/{styles → dist/styles}/icons/16px/vertical-bar-chart-desc.svg +0 -0
  1873. /package/{styles → dist/styles}/icons/16px/vertical-distribution.svg +0 -0
  1874. /package/{styles → dist/styles}/icons/16px/video.svg +0 -0
  1875. /package/{styles → dist/styles}/icons/16px/volume-down.svg +0 -0
  1876. /package/{styles → dist/styles}/icons/16px/volume-off.svg +0 -0
  1877. /package/{styles → dist/styles}/icons/16px/volume-up.svg +0 -0
  1878. /package/{styles → dist/styles}/icons/16px/walk.svg +0 -0
  1879. /package/{styles → dist/styles}/icons/16px/warning-sign.svg +0 -0
  1880. /package/{styles → dist/styles}/icons/16px/waterfall-chart.svg +0 -0
  1881. /package/{styles → dist/styles}/icons/16px/widget-button.svg +0 -0
  1882. /package/{styles → dist/styles}/icons/16px/widget-footer.svg +0 -0
  1883. /package/{styles → dist/styles}/icons/16px/widget-header.svg +0 -0
  1884. /package/{styles → dist/styles}/icons/16px/widget.svg +0 -0
  1885. /package/{styles → dist/styles}/icons/16px/wrench.svg +0 -0
  1886. /package/{styles → dist/styles}/icons/16px/zoom-in.svg +0 -0
  1887. /package/{styles → dist/styles}/icons/16px/zoom-out.svg +0 -0
  1888. /package/{styles → dist/styles}/icons/16px/zoom-to-fit.svg +0 -0
  1889. /package/{styles → dist/styles}/icons/20px/add-column-left.svg +0 -0
  1890. /package/{styles → dist/styles}/icons/20px/add-column-right.svg +0 -0
  1891. /package/{styles → dist/styles}/icons/20px/add-row-bottom.svg +0 -0
  1892. /package/{styles → dist/styles}/icons/20px/add-row-top.svg +0 -0
  1893. /package/{styles → dist/styles}/icons/20px/add-to-artifact.svg +0 -0
  1894. /package/{styles → dist/styles}/icons/20px/add-to-folder.svg +0 -0
  1895. /package/{styles → dist/styles}/icons/20px/add.svg +0 -0
  1896. /package/{styles → dist/styles}/icons/20px/airplane.svg +0 -0
  1897. /package/{styles → dist/styles}/icons/20px/align-center.svg +0 -0
  1898. /package/{styles → dist/styles}/icons/20px/align-justify.svg +0 -0
  1899. /package/{styles → dist/styles}/icons/20px/align-left.svg +0 -0
  1900. /package/{styles → dist/styles}/icons/20px/align-right.svg +0 -0
  1901. /package/{styles → dist/styles}/icons/20px/alignment-bottom.svg +0 -0
  1902. /package/{styles → dist/styles}/icons/20px/alignment-horizontal-center.svg +0 -0
  1903. /package/{styles → dist/styles}/icons/20px/alignment-left.svg +0 -0
  1904. /package/{styles → dist/styles}/icons/20px/alignment-right.svg +0 -0
  1905. /package/{styles → dist/styles}/icons/20px/alignment-top.svg +0 -0
  1906. /package/{styles → dist/styles}/icons/20px/alignment-vertical-center.svg +0 -0
  1907. /package/{styles → dist/styles}/icons/20px/annotation.svg +0 -0
  1908. /package/{styles → dist/styles}/icons/20px/application.svg +0 -0
  1909. /package/{styles → dist/styles}/icons/20px/applications.svg +0 -0
  1910. /package/{styles → dist/styles}/icons/20px/arrow-bottom-left.svg +0 -0
  1911. /package/{styles → dist/styles}/icons/20px/arrow-bottom-right.svg +0 -0
  1912. /package/{styles → dist/styles}/icons/20px/arrow-down.svg +0 -0
  1913. /package/{styles → dist/styles}/icons/20px/arrow-left.svg +0 -0
  1914. /package/{styles → dist/styles}/icons/20px/arrow-right.svg +0 -0
  1915. /package/{styles → dist/styles}/icons/20px/arrow-top-left.svg +0 -0
  1916. /package/{styles → dist/styles}/icons/20px/arrow-top-right.svg +0 -0
  1917. /package/{styles → dist/styles}/icons/20px/arrow-up.svg +0 -0
  1918. /package/{styles → dist/styles}/icons/20px/arrows-horizontal.svg +0 -0
  1919. /package/{styles → dist/styles}/icons/20px/arrows-vertical.svg +0 -0
  1920. /package/{styles → dist/styles}/icons/20px/asterisk.svg +0 -0
  1921. /package/{styles → dist/styles}/icons/20px/automatic-updates.svg +0 -0
  1922. /package/{styles → dist/styles}/icons/20px/badge.svg +0 -0
  1923. /package/{styles → dist/styles}/icons/20px/ban-circle.svg +0 -0
  1924. /package/{styles → dist/styles}/icons/20px/bank-account.svg +0 -0
  1925. /package/{styles → dist/styles}/icons/20px/barcode.svg +0 -0
  1926. /package/{styles → dist/styles}/icons/20px/blank.svg +0 -0
  1927. /package/{styles → dist/styles}/icons/20px/blocked-person.svg +0 -0
  1928. /package/{styles → dist/styles}/icons/20px/bold.svg +0 -0
  1929. /package/{styles → dist/styles}/icons/20px/book.svg +0 -0
  1930. /package/{styles → dist/styles}/icons/20px/bookmark.svg +0 -0
  1931. /package/{styles → dist/styles}/icons/20px/box.svg +0 -0
  1932. /package/{styles → dist/styles}/icons/20px/briefcase.svg +0 -0
  1933. /package/{styles → dist/styles}/icons/20px/build.svg +0 -0
  1934. /package/{styles → dist/styles}/icons/20px/calculator.svg +0 -0
  1935. /package/{styles → dist/styles}/icons/20px/calendar.svg +0 -0
  1936. /package/{styles → dist/styles}/icons/20px/camera.svg +0 -0
  1937. /package/{styles → dist/styles}/icons/20px/caret-down.svg +0 -0
  1938. /package/{styles → dist/styles}/icons/20px/caret-left.svg +0 -0
  1939. /package/{styles → dist/styles}/icons/20px/caret-right.svg +0 -0
  1940. /package/{styles → dist/styles}/icons/20px/caret-up.svg +0 -0
  1941. /package/{styles → dist/styles}/icons/20px/cell-tower.svg +0 -0
  1942. /package/{styles → dist/styles}/icons/20px/changes.svg +0 -0
  1943. /package/{styles → dist/styles}/icons/20px/chart.svg +0 -0
  1944. /package/{styles → dist/styles}/icons/20px/chat.svg +0 -0
  1945. /package/{styles → dist/styles}/icons/20px/chevron-backward.svg +0 -0
  1946. /package/{styles → dist/styles}/icons/20px/chevron-down.svg +0 -0
  1947. /package/{styles → dist/styles}/icons/20px/chevron-forward.svg +0 -0
  1948. /package/{styles → dist/styles}/icons/20px/chevron-left.svg +0 -0
  1949. /package/{styles → dist/styles}/icons/20px/chevron-right.svg +0 -0
  1950. /package/{styles → dist/styles}/icons/20px/chevron-up.svg +0 -0
  1951. /package/{styles → dist/styles}/icons/20px/circle-arrow-down.svg +0 -0
  1952. /package/{styles → dist/styles}/icons/20px/circle-arrow-left.svg +0 -0
  1953. /package/{styles → dist/styles}/icons/20px/circle-arrow-right.svg +0 -0
  1954. /package/{styles → dist/styles}/icons/20px/circle-arrow-up.svg +0 -0
  1955. /package/{styles → dist/styles}/icons/20px/circle.svg +0 -0
  1956. /package/{styles → dist/styles}/icons/20px/citation.svg +0 -0
  1957. /package/{styles → dist/styles}/icons/20px/clean.svg +0 -0
  1958. /package/{styles → dist/styles}/icons/20px/clipboard.svg +0 -0
  1959. /package/{styles → dist/styles}/icons/20px/cloud-download.svg +0 -0
  1960. /package/{styles → dist/styles}/icons/20px/cloud-upload.svg +0 -0
  1961. /package/{styles → dist/styles}/icons/20px/cloud.svg +0 -0
  1962. /package/{styles → dist/styles}/icons/20px/code-block.svg +0 -0
  1963. /package/{styles → dist/styles}/icons/20px/code.svg +0 -0
  1964. /package/{styles → dist/styles}/icons/20px/cog.svg +0 -0
  1965. /package/{styles → dist/styles}/icons/20px/collapse-all.svg +0 -0
  1966. /package/{styles → dist/styles}/icons/20px/column-layout.svg +0 -0
  1967. /package/{styles → dist/styles}/icons/20px/comment.svg +0 -0
  1968. /package/{styles → dist/styles}/icons/20px/comparison.svg +0 -0
  1969. /package/{styles → dist/styles}/icons/20px/compass.svg +0 -0
  1970. /package/{styles → dist/styles}/icons/20px/compressed.svg +0 -0
  1971. /package/{styles → dist/styles}/icons/20px/confirm.svg +0 -0
  1972. /package/{styles → dist/styles}/icons/20px/console.svg +0 -0
  1973. /package/{styles → dist/styles}/icons/20px/contrast.svg +0 -0
  1974. /package/{styles → dist/styles}/icons/20px/control.svg +0 -0
  1975. /package/{styles → dist/styles}/icons/20px/credit-card.svg +0 -0
  1976. /package/{styles → dist/styles}/icons/20px/cross.svg +0 -0
  1977. /package/{styles → dist/styles}/icons/20px/crown.svg +0 -0
  1978. /package/{styles → dist/styles}/icons/20px/cube-add.svg +0 -0
  1979. /package/{styles → dist/styles}/icons/20px/cube-remove.svg +0 -0
  1980. /package/{styles → dist/styles}/icons/20px/cube.svg +0 -0
  1981. /package/{styles → dist/styles}/icons/20px/curved-range-chart.svg +0 -0
  1982. /package/{styles → dist/styles}/icons/20px/cut.svg +0 -0
  1983. /package/{styles → dist/styles}/icons/20px/dashboard.svg +0 -0
  1984. /package/{styles → dist/styles}/icons/20px/database.svg +0 -0
  1985. /package/{styles → dist/styles}/icons/20px/delete.svg +0 -0
  1986. /package/{styles → dist/styles}/icons/20px/delta.svg +0 -0
  1987. /package/{styles → dist/styles}/icons/20px/derive-column.svg +0 -0
  1988. /package/{styles → dist/styles}/icons/20px/desktop.svg +0 -0
  1989. /package/{styles → dist/styles}/icons/20px/diagram-tree.svg +0 -0
  1990. /package/{styles → dist/styles}/icons/20px/direction-left.svg +0 -0
  1991. /package/{styles → dist/styles}/icons/20px/direction-right.svg +0 -0
  1992. /package/{styles → dist/styles}/icons/20px/disable.svg +0 -0
  1993. /package/{styles → dist/styles}/icons/20px/document-open.svg +0 -0
  1994. /package/{styles → dist/styles}/icons/20px/document-share.svg +0 -0
  1995. /package/{styles → dist/styles}/icons/20px/document.svg +0 -0
  1996. /package/{styles → dist/styles}/icons/20px/dollar.svg +0 -0
  1997. /package/{styles → dist/styles}/icons/20px/dot.svg +0 -0
  1998. /package/{styles → dist/styles}/icons/20px/double-caret-horizontal.svg +0 -0
  1999. /package/{styles → dist/styles}/icons/20px/double-caret-vertical.svg +0 -0
  2000. /package/{styles → dist/styles}/icons/20px/double-chevron-down.svg +0 -0
  2001. /package/{styles → dist/styles}/icons/20px/double-chevron-left.svg +0 -0
  2002. /package/{styles → dist/styles}/icons/20px/double-chevron-right.svg +0 -0
  2003. /package/{styles → dist/styles}/icons/20px/double-chevron-up.svg +0 -0
  2004. /package/{styles → dist/styles}/icons/20px/doughnut-chart.svg +0 -0
  2005. /package/{styles → dist/styles}/icons/20px/download.svg +0 -0
  2006. /package/{styles → dist/styles}/icons/20px/drag-handle-horizontal.svg +0 -0
  2007. /package/{styles → dist/styles}/icons/20px/drag-handle-vertical.svg +0 -0
  2008. /package/{styles → dist/styles}/icons/20px/draw.svg +0 -0
  2009. /package/{styles → dist/styles}/icons/20px/drive-time.svg +0 -0
  2010. /package/{styles → dist/styles}/icons/20px/duplicate.svg +0 -0
  2011. /package/{styles → dist/styles}/icons/20px/edit.svg +0 -0
  2012. /package/{styles → dist/styles}/icons/20px/eject.svg +0 -0
  2013. /package/{styles → dist/styles}/icons/20px/endorsed.svg +0 -0
  2014. /package/{styles → dist/styles}/icons/20px/envelope.svg +0 -0
  2015. /package/{styles → dist/styles}/icons/20px/eraser.svg +0 -0
  2016. /package/{styles → dist/styles}/icons/20px/error.svg +0 -0
  2017. /package/{styles → dist/styles}/icons/20px/euro.svg +0 -0
  2018. /package/{styles → dist/styles}/icons/20px/exchange.svg +0 -0
  2019. /package/{styles → dist/styles}/icons/20px/exclude-row.svg +0 -0
  2020. /package/{styles → dist/styles}/icons/20px/expand-all.svg +0 -0
  2021. /package/{styles → dist/styles}/icons/20px/export.svg +0 -0
  2022. /package/{styles → dist/styles}/icons/20px/eye-off.svg +0 -0
  2023. /package/{styles → dist/styles}/icons/20px/eye-on.svg +0 -0
  2024. /package/{styles → dist/styles}/icons/20px/eye-open.svg +0 -0
  2025. /package/{styles → dist/styles}/icons/20px/fast-backward.svg +0 -0
  2026. /package/{styles → dist/styles}/icons/20px/fast-forward.svg +0 -0
  2027. /package/{styles → dist/styles}/icons/20px/feed-subscribed.svg +0 -0
  2028. /package/{styles → dist/styles}/icons/20px/feed.svg +0 -0
  2029. /package/{styles → dist/styles}/icons/20px/film.svg +0 -0
  2030. /package/{styles → dist/styles}/icons/20px/filter-keep.svg +0 -0
  2031. /package/{styles → dist/styles}/icons/20px/filter-list.svg +0 -0
  2032. /package/{styles → dist/styles}/icons/20px/filter-remove.svg +0 -0
  2033. /package/{styles → dist/styles}/icons/20px/filter.svg +0 -0
  2034. /package/{styles → dist/styles}/icons/20px/flag.svg +0 -0
  2035. /package/{styles → dist/styles}/icons/20px/flame.svg +0 -0
  2036. /package/{styles → dist/styles}/icons/20px/flash.svg +0 -0
  2037. /package/{styles → dist/styles}/icons/20px/floppy-disk.svg +0 -0
  2038. /package/{styles → dist/styles}/icons/20px/flow-branch.svg +0 -0
  2039. /package/{styles → dist/styles}/icons/20px/flow-end.svg +0 -0
  2040. /package/{styles → dist/styles}/icons/20px/flow-linear.svg +0 -0
  2041. /package/{styles → dist/styles}/icons/20px/flow-review-branch.svg +0 -0
  2042. /package/{styles → dist/styles}/icons/20px/flow-review.svg +0 -0
  2043. /package/{styles → dist/styles}/icons/20px/flows.svg +0 -0
  2044. /package/{styles → dist/styles}/icons/20px/folder-close.svg +0 -0
  2045. /package/{styles → dist/styles}/icons/20px/folder-new.svg +0 -0
  2046. /package/{styles → dist/styles}/icons/20px/folder-open.svg +0 -0
  2047. /package/{styles → dist/styles}/icons/20px/folder-shared-open.svg +0 -0
  2048. /package/{styles → dist/styles}/icons/20px/folder-shared.svg +0 -0
  2049. /package/{styles → dist/styles}/icons/20px/follower.svg +0 -0
  2050. /package/{styles → dist/styles}/icons/20px/following.svg +0 -0
  2051. /package/{styles → dist/styles}/icons/20px/font.svg +0 -0
  2052. /package/{styles → dist/styles}/icons/20px/fork.svg +0 -0
  2053. /package/{styles → dist/styles}/icons/20px/form.svg +0 -0
  2054. /package/{styles → dist/styles}/icons/20px/full-circle.svg +0 -0
  2055. /package/{styles → dist/styles}/icons/20px/full-stacked-chart.svg +0 -0
  2056. /package/{styles → dist/styles}/icons/20px/fullscreen.svg +0 -0
  2057. /package/{styles → dist/styles}/icons/20px/function.svg +0 -0
  2058. /package/{styles → dist/styles}/icons/20px/gantt-chart.svg +0 -0
  2059. /package/{styles → dist/styles}/icons/20px/geolocation.svg +0 -0
  2060. /package/{styles → dist/styles}/icons/20px/geosearch.svg +0 -0
  2061. /package/{styles → dist/styles}/icons/20px/git-branch.svg +0 -0
  2062. /package/{styles → dist/styles}/icons/20px/git-commit.svg +0 -0
  2063. /package/{styles → dist/styles}/icons/20px/git-merge.svg +0 -0
  2064. /package/{styles → dist/styles}/icons/20px/git-new-branch.svg +0 -0
  2065. /package/{styles → dist/styles}/icons/20px/git-pull.svg +0 -0
  2066. /package/{styles → dist/styles}/icons/20px/git-push.svg +0 -0
  2067. /package/{styles → dist/styles}/icons/20px/git-repo.svg +0 -0
  2068. /package/{styles → dist/styles}/icons/20px/glass.svg +0 -0
  2069. /package/{styles → dist/styles}/icons/20px/globe-network.svg +0 -0
  2070. /package/{styles → dist/styles}/icons/20px/globe.svg +0 -0
  2071. /package/{styles → dist/styles}/icons/20px/graph-remove.svg +0 -0
  2072. /package/{styles → dist/styles}/icons/20px/graph.svg +0 -0
  2073. /package/{styles → dist/styles}/icons/20px/grid-view.svg +0 -0
  2074. /package/{styles → dist/styles}/icons/20px/grid.svg +0 -0
  2075. /package/{styles → dist/styles}/icons/20px/group-objects.svg +0 -0
  2076. /package/{styles → dist/styles}/icons/20px/grouped-bar-chart.svg +0 -0
  2077. /package/{styles → dist/styles}/icons/20px/hand-down.svg +0 -0
  2078. /package/{styles → dist/styles}/icons/20px/hand-left.svg +0 -0
  2079. /package/{styles → dist/styles}/icons/20px/hand-right.svg +0 -0
  2080. /package/{styles → dist/styles}/icons/20px/hand-up.svg +0 -0
  2081. /package/{styles → dist/styles}/icons/20px/hand.svg +0 -0
  2082. /package/{styles → dist/styles}/icons/20px/header-one.svg +0 -0
  2083. /package/{styles → dist/styles}/icons/20px/header-two.svg +0 -0
  2084. /package/{styles → dist/styles}/icons/20px/header.svg +0 -0
  2085. /package/{styles → dist/styles}/icons/20px/headset.svg +0 -0
  2086. /package/{styles → dist/styles}/icons/20px/heart-broken.svg +0 -0
  2087. /package/{styles → dist/styles}/icons/20px/heart.svg +0 -0
  2088. /package/{styles → dist/styles}/icons/20px/heat-grid.svg +0 -0
  2089. /package/{styles → dist/styles}/icons/20px/heatmap.svg +0 -0
  2090. /package/{styles → dist/styles}/icons/20px/help.svg +0 -0
  2091. /package/{styles → dist/styles}/icons/20px/helper-management.svg +0 -0
  2092. /package/{styles → dist/styles}/icons/20px/highlight.svg +0 -0
  2093. /package/{styles → dist/styles}/icons/20px/history.svg +0 -0
  2094. /package/{styles → dist/styles}/icons/20px/home.svg +0 -0
  2095. /package/{styles → dist/styles}/icons/20px/horizontal-bar-chart-asc.svg +0 -0
  2096. /package/{styles → dist/styles}/icons/20px/horizontal-bar-chart-desc.svg +0 -0
  2097. /package/{styles → dist/styles}/icons/20px/horizontal-bar-chart.svg +0 -0
  2098. /package/{styles → dist/styles}/icons/20px/horizontal-distribution.svg +0 -0
  2099. /package/{styles → dist/styles}/icons/20px/id-number.svg +0 -0
  2100. /package/{styles → dist/styles}/icons/20px/image-rotate-left.svg +0 -0
  2101. /package/{styles → dist/styles}/icons/20px/image-rotate-right.svg +0 -0
  2102. /package/{styles → dist/styles}/icons/20px/import.svg +0 -0
  2103. /package/{styles → dist/styles}/icons/20px/inbox-filtered.svg +0 -0
  2104. /package/{styles → dist/styles}/icons/20px/inbox-geo.svg +0 -0
  2105. /package/{styles → dist/styles}/icons/20px/inbox-search.svg +0 -0
  2106. /package/{styles → dist/styles}/icons/20px/inbox-update.svg +0 -0
  2107. /package/{styles → dist/styles}/icons/20px/inbox.svg +0 -0
  2108. /package/{styles → dist/styles}/icons/20px/info-sign.svg +0 -0
  2109. /package/{styles → dist/styles}/icons/20px/inner-join.svg +0 -0
  2110. /package/{styles → dist/styles}/icons/20px/insert.svg +0 -0
  2111. /package/{styles → dist/styles}/icons/20px/intersection.svg +0 -0
  2112. /package/{styles → dist/styles}/icons/20px/ip-address.svg +0 -0
  2113. /package/{styles → dist/styles}/icons/20px/issue-closed.svg +0 -0
  2114. /package/{styles → dist/styles}/icons/20px/issue-new.svg +0 -0
  2115. /package/{styles → dist/styles}/icons/20px/issue.svg +0 -0
  2116. /package/{styles → dist/styles}/icons/20px/italic.svg +0 -0
  2117. /package/{styles → dist/styles}/icons/20px/join-table.svg +0 -0
  2118. /package/{styles → dist/styles}/icons/20px/key-backspace.svg +0 -0
  2119. /package/{styles → dist/styles}/icons/20px/key-command.svg +0 -0
  2120. /package/{styles → dist/styles}/icons/20px/key-control.svg +0 -0
  2121. /package/{styles → dist/styles}/icons/20px/key-delete.svg +0 -0
  2122. /package/{styles → dist/styles}/icons/20px/key-enter.svg +0 -0
  2123. /package/{styles → dist/styles}/icons/20px/key-escape.svg +0 -0
  2124. /package/{styles → dist/styles}/icons/20px/key-option.svg +0 -0
  2125. /package/{styles → dist/styles}/icons/20px/key-shift.svg +0 -0
  2126. /package/{styles → dist/styles}/icons/20px/key-tab.svg +0 -0
  2127. /package/{styles → dist/styles}/icons/20px/key.svg +0 -0
  2128. /package/{styles → dist/styles}/icons/20px/known-vehicle.svg +0 -0
  2129. /package/{styles → dist/styles}/icons/20px/label.svg +0 -0
  2130. /package/{styles → dist/styles}/icons/20px/layer.svg +0 -0
  2131. /package/{styles → dist/styles}/icons/20px/layers.svg +0 -0
  2132. /package/{styles → dist/styles}/icons/20px/layout-auto.svg +0 -0
  2133. /package/{styles → dist/styles}/icons/20px/layout-balloon.svg +0 -0
  2134. /package/{styles → dist/styles}/icons/20px/layout-circle.svg +0 -0
  2135. /package/{styles → dist/styles}/icons/20px/layout-grid.svg +0 -0
  2136. /package/{styles → dist/styles}/icons/20px/layout-group-by.svg +0 -0
  2137. /package/{styles → dist/styles}/icons/20px/layout-hierarchy.svg +0 -0
  2138. /package/{styles → dist/styles}/icons/20px/layout-linear.svg +0 -0
  2139. /package/{styles → dist/styles}/icons/20px/layout-skew-grid.svg +0 -0
  2140. /package/{styles → dist/styles}/icons/20px/layout-sorted-clusters.svg +0 -0
  2141. /package/{styles → dist/styles}/icons/20px/layout.svg +0 -0
  2142. /package/{styles → dist/styles}/icons/20px/left-join.svg +0 -0
  2143. /package/{styles → dist/styles}/icons/20px/lifesaver.svg +0 -0
  2144. /package/{styles → dist/styles}/icons/20px/lightbulb.svg +0 -0
  2145. /package/{styles → dist/styles}/icons/20px/link.svg +0 -0
  2146. /package/{styles → dist/styles}/icons/20px/list-columns.svg +0 -0
  2147. /package/{styles → dist/styles}/icons/20px/list-detail-view.svg +0 -0
  2148. /package/{styles → dist/styles}/icons/20px/list.svg +0 -0
  2149. /package/{styles → dist/styles}/icons/20px/locate.svg +0 -0
  2150. /package/{styles → dist/styles}/icons/20px/lock.svg +0 -0
  2151. /package/{styles → dist/styles}/icons/20px/log-in.svg +0 -0
  2152. /package/{styles → dist/styles}/icons/20px/log-out.svg +0 -0
  2153. /package/{styles → dist/styles}/icons/20px/manual.svg +0 -0
  2154. /package/{styles → dist/styles}/icons/20px/manually-entered-data.svg +0 -0
  2155. /package/{styles → dist/styles}/icons/20px/map-create.svg +0 -0
  2156. /package/{styles → dist/styles}/icons/20px/map-marker.svg +0 -0
  2157. /package/{styles → dist/styles}/icons/20px/map.svg +0 -0
  2158. /package/{styles → dist/styles}/icons/20px/maximize.svg +0 -0
  2159. /package/{styles → dist/styles}/icons/20px/media.svg +0 -0
  2160. /package/{styles → dist/styles}/icons/20px/menu-closed.svg +0 -0
  2161. /package/{styles → dist/styles}/icons/20px/menu-open.svg +0 -0
  2162. /package/{styles → dist/styles}/icons/20px/menu.svg +0 -0
  2163. /package/{styles → dist/styles}/icons/20px/merge-columns.svg +0 -0
  2164. /package/{styles → dist/styles}/icons/20px/merge-links.svg +0 -0
  2165. /package/{styles → dist/styles}/icons/20px/minimize.svg +0 -0
  2166. /package/{styles → dist/styles}/icons/20px/minus.svg +0 -0
  2167. /package/{styles → dist/styles}/icons/20px/mobile-phone.svg +0 -0
  2168. /package/{styles → dist/styles}/icons/20px/mobile-video.svg +0 -0
  2169. /package/{styles → dist/styles}/icons/20px/moon.svg +0 -0
  2170. /package/{styles → dist/styles}/icons/20px/more.svg +0 -0
  2171. /package/{styles → dist/styles}/icons/20px/mountain.svg +0 -0
  2172. /package/{styles → dist/styles}/icons/20px/move.svg +0 -0
  2173. /package/{styles → dist/styles}/icons/20px/mugshot.svg +0 -0
  2174. /package/{styles → dist/styles}/icons/20px/multi-select.svg +0 -0
  2175. /package/{styles → dist/styles}/icons/20px/music.svg +0 -0
  2176. /package/{styles → dist/styles}/icons/20px/new-grid-item.svg +0 -0
  2177. /package/{styles → dist/styles}/icons/20px/new-link.svg +0 -0
  2178. /package/{styles → dist/styles}/icons/20px/new-object.svg +0 -0
  2179. /package/{styles → dist/styles}/icons/20px/new-person.svg +0 -0
  2180. /package/{styles → dist/styles}/icons/20px/new-prescription.svg +0 -0
  2181. /package/{styles → dist/styles}/icons/20px/new-text-box.svg +0 -0
  2182. /package/{styles → dist/styles}/icons/20px/ninja.svg +0 -0
  2183. /package/{styles → dist/styles}/icons/20px/notifications-updated.svg +0 -0
  2184. /package/{styles → dist/styles}/icons/20px/notifications.svg +0 -0
  2185. /package/{styles → dist/styles}/icons/20px/numbered-list.svg +0 -0
  2186. /package/{styles → dist/styles}/icons/20px/numerical.svg +0 -0
  2187. /package/{styles → dist/styles}/icons/20px/office.svg +0 -0
  2188. /package/{styles → dist/styles}/icons/20px/offline.svg +0 -0
  2189. /package/{styles → dist/styles}/icons/20px/oil-field.svg +0 -0
  2190. /package/{styles → dist/styles}/icons/20px/one-column.svg +0 -0
  2191. /package/{styles → dist/styles}/icons/20px/outdated.svg +0 -0
  2192. /package/{styles → dist/styles}/icons/20px/page-layout.svg +0 -0
  2193. /package/{styles → dist/styles}/icons/20px/panel-stats.svg +0 -0
  2194. /package/{styles → dist/styles}/icons/20px/panel-table.svg +0 -0
  2195. /package/{styles → dist/styles}/icons/20px/paperclip.svg +0 -0
  2196. /package/{styles → dist/styles}/icons/20px/paragraph.svg +0 -0
  2197. /package/{styles → dist/styles}/icons/20px/path-search.svg +0 -0
  2198. /package/{styles → dist/styles}/icons/20px/path.svg +0 -0
  2199. /package/{styles → dist/styles}/icons/20px/pause.svg +0 -0
  2200. /package/{styles → dist/styles}/icons/20px/people.svg +0 -0
  2201. /package/{styles → dist/styles}/icons/20px/percentage.svg +0 -0
  2202. /package/{styles → dist/styles}/icons/20px/person.svg +0 -0
  2203. /package/{styles → dist/styles}/icons/20px/phone.svg +0 -0
  2204. /package/{styles → dist/styles}/icons/20px/pie-chart.svg +0 -0
  2205. /package/{styles → dist/styles}/icons/20px/pin.svg +0 -0
  2206. /package/{styles → dist/styles}/icons/20px/pivot-table.svg +0 -0
  2207. /package/{styles → dist/styles}/icons/20px/pivot.svg +0 -0
  2208. /package/{styles → dist/styles}/icons/20px/play.svg +0 -0
  2209. /package/{styles → dist/styles}/icons/20px/plus.svg +0 -0
  2210. /package/{styles → dist/styles}/icons/20px/polygon-filter.svg +0 -0
  2211. /package/{styles → dist/styles}/icons/20px/power.svg +0 -0
  2212. /package/{styles → dist/styles}/icons/20px/predictive-analysis.svg +0 -0
  2213. /package/{styles → dist/styles}/icons/20px/prescription.svg +0 -0
  2214. /package/{styles → dist/styles}/icons/20px/presentation.svg +0 -0
  2215. /package/{styles → dist/styles}/icons/20px/print.svg +0 -0
  2216. /package/{styles → dist/styles}/icons/20px/projects.svg +0 -0
  2217. /package/{styles → dist/styles}/icons/20px/properties.svg +0 -0
  2218. /package/{styles → dist/styles}/icons/20px/property.svg +0 -0
  2219. /package/{styles → dist/styles}/icons/20px/publish-function.svg +0 -0
  2220. /package/{styles → dist/styles}/icons/20px/pulse.svg +0 -0
  2221. /package/{styles → dist/styles}/icons/20px/random.svg +0 -0
  2222. /package/{styles → dist/styles}/icons/20px/record.svg +0 -0
  2223. /package/{styles → dist/styles}/icons/20px/redo.svg +0 -0
  2224. /package/{styles → dist/styles}/icons/20px/refresh.svg +0 -0
  2225. /package/{styles → dist/styles}/icons/20px/regression-chart.svg +0 -0
  2226. /package/{styles → dist/styles}/icons/20px/remove-column-left.svg +0 -0
  2227. /package/{styles → dist/styles}/icons/20px/remove-column-right.svg +0 -0
  2228. /package/{styles → dist/styles}/icons/20px/remove-column.svg +0 -0
  2229. /package/{styles → dist/styles}/icons/20px/remove-row-bottom.svg +0 -0
  2230. /package/{styles → dist/styles}/icons/20px/remove-row-top.svg +0 -0
  2231. /package/{styles → dist/styles}/icons/20px/remove.svg +0 -0
  2232. /package/{styles → dist/styles}/icons/20px/repeat.svg +0 -0
  2233. /package/{styles → dist/styles}/icons/20px/resolve.svg +0 -0
  2234. /package/{styles → dist/styles}/icons/20px/rig.svg +0 -0
  2235. /package/{styles → dist/styles}/icons/20px/right-join.svg +0 -0
  2236. /package/{styles → dist/styles}/icons/20px/ring.svg +0 -0
  2237. /package/{styles → dist/styles}/icons/20px/rotate-document.svg +0 -0
  2238. /package/{styles → dist/styles}/icons/20px/rotate-page.svg +0 -0
  2239. /package/{styles → dist/styles}/icons/20px/satellite.svg +0 -0
  2240. /package/{styles → dist/styles}/icons/20px/saved.svg +0 -0
  2241. /package/{styles → dist/styles}/icons/20px/scatter-plot.svg +0 -0
  2242. /package/{styles → dist/styles}/icons/20px/search-around.svg +0 -0
  2243. /package/{styles → dist/styles}/icons/20px/search-template.svg +0 -0
  2244. /package/{styles → dist/styles}/icons/20px/search-text.svg +0 -0
  2245. /package/{styles → dist/styles}/icons/20px/search.svg +0 -0
  2246. /package/{styles → dist/styles}/icons/20px/segmented-control.svg +0 -0
  2247. /package/{styles → dist/styles}/icons/20px/select.svg +0 -0
  2248. /package/{styles → dist/styles}/icons/20px/selection.svg +0 -0
  2249. /package/{styles → dist/styles}/icons/20px/send-to-graph.svg +0 -0
  2250. /package/{styles → dist/styles}/icons/20px/send-to-map.svg +0 -0
  2251. /package/{styles → dist/styles}/icons/20px/send-to.svg +0 -0
  2252. /package/{styles → dist/styles}/icons/20px/series-add.svg +0 -0
  2253. /package/{styles → dist/styles}/icons/20px/series-configuration.svg +0 -0
  2254. /package/{styles → dist/styles}/icons/20px/series-derived.svg +0 -0
  2255. /package/{styles → dist/styles}/icons/20px/series-filtered.svg +0 -0
  2256. /package/{styles → dist/styles}/icons/20px/series-search.svg +0 -0
  2257. /package/{styles → dist/styles}/icons/20px/settings.svg +0 -0
  2258. /package/{styles → dist/styles}/icons/20px/share.svg +0 -0
  2259. /package/{styles → dist/styles}/icons/20px/shield.svg +0 -0
  2260. /package/{styles → dist/styles}/icons/20px/shop.svg +0 -0
  2261. /package/{styles → dist/styles}/icons/20px/shopping-cart.svg +0 -0
  2262. /package/{styles → dist/styles}/icons/20px/sim-card.svg +0 -0
  2263. /package/{styles → dist/styles}/icons/20px/slash.svg +0 -0
  2264. /package/{styles → dist/styles}/icons/20px/small-cross.svg +0 -0
  2265. /package/{styles → dist/styles}/icons/20px/small-minus.svg +0 -0
  2266. /package/{styles → dist/styles}/icons/20px/small-plus.svg +0 -0
  2267. /package/{styles → dist/styles}/icons/20px/small-tick.svg +0 -0
  2268. /package/{styles → dist/styles}/icons/20px/snowflake.svg +0 -0
  2269. /package/{styles → dist/styles}/icons/20px/social-media.svg +0 -0
  2270. /package/{styles → dist/styles}/icons/20px/sort-alphabetical-desc.svg +0 -0
  2271. /package/{styles → dist/styles}/icons/20px/sort-alphabetical.svg +0 -0
  2272. /package/{styles → dist/styles}/icons/20px/sort-asc.svg +0 -0
  2273. /package/{styles → dist/styles}/icons/20px/sort-desc.svg +0 -0
  2274. /package/{styles → dist/styles}/icons/20px/sort-numerical-desc.svg +0 -0
  2275. /package/{styles → dist/styles}/icons/20px/sort-numerical.svg +0 -0
  2276. /package/{styles → dist/styles}/icons/20px/sort.svg +0 -0
  2277. /package/{styles → dist/styles}/icons/20px/split-columns.svg +0 -0
  2278. /package/{styles → dist/styles}/icons/20px/square.svg +0 -0
  2279. /package/{styles → dist/styles}/icons/20px/stacked-chart.svg +0 -0
  2280. /package/{styles → dist/styles}/icons/20px/star-empty.svg +0 -0
  2281. /package/{styles → dist/styles}/icons/20px/star.svg +0 -0
  2282. /package/{styles → dist/styles}/icons/20px/step-backward.svg +0 -0
  2283. /package/{styles → dist/styles}/icons/20px/step-chart.svg +0 -0
  2284. /package/{styles → dist/styles}/icons/20px/step-forward.svg +0 -0
  2285. /package/{styles → dist/styles}/icons/20px/stop.svg +0 -0
  2286. /package/{styles → dist/styles}/icons/20px/strikethrough.svg +0 -0
  2287. /package/{styles → dist/styles}/icons/20px/style.svg +0 -0
  2288. /package/{styles → dist/styles}/icons/20px/swap-horizontal.svg +0 -0
  2289. /package/{styles → dist/styles}/icons/20px/swap-vertical.svg +0 -0
  2290. /package/{styles → dist/styles}/icons/20px/symbol-circle.svg +0 -0
  2291. /package/{styles → dist/styles}/icons/20px/symbol-cross.svg +0 -0
  2292. /package/{styles → dist/styles}/icons/20px/symbol-diamond.svg +0 -0
  2293. /package/{styles → dist/styles}/icons/20px/symbol-square.svg +0 -0
  2294. /package/{styles → dist/styles}/icons/20px/symbol-triangle-down.svg +0 -0
  2295. /package/{styles → dist/styles}/icons/20px/symbol-triangle-up.svg +0 -0
  2296. /package/{styles → dist/styles}/icons/20px/tag.svg +0 -0
  2297. /package/{styles → dist/styles}/icons/20px/take-action.svg +0 -0
  2298. /package/{styles → dist/styles}/icons/20px/taxi.svg +0 -0
  2299. /package/{styles → dist/styles}/icons/20px/text-highlight.svg +0 -0
  2300. /package/{styles → dist/styles}/icons/20px/th-derived.svg +0 -0
  2301. /package/{styles → dist/styles}/icons/20px/th-filtered.svg +0 -0
  2302. /package/{styles → dist/styles}/icons/20px/th-list.svg +0 -0
  2303. /package/{styles → dist/styles}/icons/20px/th.svg +0 -0
  2304. /package/{styles → dist/styles}/icons/20px/thumbs-down.svg +0 -0
  2305. /package/{styles → dist/styles}/icons/20px/thumbs-up.svg +0 -0
  2306. /package/{styles → dist/styles}/icons/20px/tick-circle.svg +0 -0
  2307. /package/{styles → dist/styles}/icons/20px/tick.svg +0 -0
  2308. /package/{styles → dist/styles}/icons/20px/time.svg +0 -0
  2309. /package/{styles → dist/styles}/icons/20px/timeline-area-chart.svg +0 -0
  2310. /package/{styles → dist/styles}/icons/20px/timeline-bar-chart.svg +0 -0
  2311. /package/{styles → dist/styles}/icons/20px/timeline-events.svg +0 -0
  2312. /package/{styles → dist/styles}/icons/20px/timeline-line-chart.svg +0 -0
  2313. /package/{styles → dist/styles}/icons/20px/tint.svg +0 -0
  2314. /package/{styles → dist/styles}/icons/20px/torch.svg +0 -0
  2315. /package/{styles → dist/styles}/icons/20px/train.svg +0 -0
  2316. /package/{styles → dist/styles}/icons/20px/translate.svg +0 -0
  2317. /package/{styles → dist/styles}/icons/20px/trash.svg +0 -0
  2318. /package/{styles → dist/styles}/icons/20px/tree.svg +0 -0
  2319. /package/{styles → dist/styles}/icons/20px/trending-down.svg +0 -0
  2320. /package/{styles → dist/styles}/icons/20px/trending-up.svg +0 -0
  2321. /package/{styles → dist/styles}/icons/20px/two-columns.svg +0 -0
  2322. /package/{styles → dist/styles}/icons/20px/underline.svg +0 -0
  2323. /package/{styles → dist/styles}/icons/20px/undo.svg +0 -0
  2324. /package/{styles → dist/styles}/icons/20px/ungroup-objects.svg +0 -0
  2325. /package/{styles → dist/styles}/icons/20px/unknown-vehicle.svg +0 -0
  2326. /package/{styles → dist/styles}/icons/20px/unlock.svg +0 -0
  2327. /package/{styles → dist/styles}/icons/20px/unpin.svg +0 -0
  2328. /package/{styles → dist/styles}/icons/20px/unresolve.svg +0 -0
  2329. /package/{styles → dist/styles}/icons/20px/updated.svg +0 -0
  2330. /package/{styles → dist/styles}/icons/20px/upload.svg +0 -0
  2331. /package/{styles → dist/styles}/icons/20px/user.svg +0 -0
  2332. /package/{styles → dist/styles}/icons/20px/variable.svg +0 -0
  2333. /package/{styles → dist/styles}/icons/20px/vertical-bar-chart-asc.svg +0 -0
  2334. /package/{styles → dist/styles}/icons/20px/vertical-bar-chart-desc.svg +0 -0
  2335. /package/{styles → dist/styles}/icons/20px/vertical-distribution.svg +0 -0
  2336. /package/{styles → dist/styles}/icons/20px/video.svg +0 -0
  2337. /package/{styles → dist/styles}/icons/20px/volume-down.svg +0 -0
  2338. /package/{styles → dist/styles}/icons/20px/volume-off.svg +0 -0
  2339. /package/{styles → dist/styles}/icons/20px/volume-up.svg +0 -0
  2340. /package/{styles → dist/styles}/icons/20px/walk.svg +0 -0
  2341. /package/{styles → dist/styles}/icons/20px/warning-sign.svg +0 -0
  2342. /package/{styles → dist/styles}/icons/20px/waterfall-chart.svg +0 -0
  2343. /package/{styles → dist/styles}/icons/20px/widget-button.svg +0 -0
  2344. /package/{styles → dist/styles}/icons/20px/widget-footer.svg +0 -0
  2345. /package/{styles → dist/styles}/icons/20px/widget-header.svg +0 -0
  2346. /package/{styles → dist/styles}/icons/20px/widget.svg +0 -0
  2347. /package/{styles → dist/styles}/icons/20px/wrench.svg +0 -0
  2348. /package/{styles → dist/styles}/icons/20px/zoom-in.svg +0 -0
  2349. /package/{styles → dist/styles}/icons/20px/zoom-out.svg +0 -0
  2350. /package/{styles → dist/styles}/icons/20px/zoom-to-fit.svg +0 -0
  2351. /package/{types.d.ts → dist/types.d.ts} +0 -0
  2352. /package/{CodeViewer → dist}/types.js +0 -0
  2353. /package/{types.js.map → dist/types.js.map} +0 -0
@@ -0,0 +1 @@
1
+ [{"id":1,"origin":{"id":1,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-01T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-01T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":2,"origin":{"id":9,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-01T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":16,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-01T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":3,"origin":{"id":17,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-01T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":24,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-01T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":4,"origin":{"id":25,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-01T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":32,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-01T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":5,"origin":{"id":33,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-01T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":40,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-01T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":6,"origin":{"id":41,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-01T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":48,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-01T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":7,"origin":{"id":49,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-01T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":56,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-02T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":8,"origin":{"id":57,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-02T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":64,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-02T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":9,"origin":{"id":65,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-02T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":72,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-02T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":10,"origin":{"id":73,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-02T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":80,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-02T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":11,"origin":{"id":81,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-02T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":88,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-02T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":12,"origin":{"id":89,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-02T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":96,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-02T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":13,"origin":{"id":97,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-02T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-02T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":14,"origin":{"id":105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-02T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-02T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":15,"origin":{"id":113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-02T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-03T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":16,"origin":{"id":121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-03T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-03T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":17,"origin":{"id":129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-03T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-03T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":18,"origin":{"id":137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-03T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-03T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":19,"origin":{"id":145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-03T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-03T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":20,"origin":{"id":153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-03T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-03T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":21,"origin":{"id":161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-03T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-03T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":22,"origin":{"id":169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-03T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-03T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":23,"origin":{"id":177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-03T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-04T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":24,"origin":{"id":185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-04T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-04T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":25,"origin":{"id":193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-04T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-04T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":26,"origin":{"id":201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-04T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-04T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":27,"origin":{"id":209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-04T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-04T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":28,"origin":{"id":217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-04T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-04T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":29,"origin":{"id":225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-04T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-04T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":30,"origin":{"id":233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-04T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-04T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":31,"origin":{"id":241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-04T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-05T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":32,"origin":{"id":249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-05T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-05T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":33,"origin":{"id":257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-05T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-05T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":34,"origin":{"id":265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-05T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-05T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":35,"origin":{"id":273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-05T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-05T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":36,"origin":{"id":281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-05T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-05T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":37,"origin":{"id":289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-05T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-05T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":38,"origin":{"id":297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-05T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-05T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":39,"origin":{"id":305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-05T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-06T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":40,"origin":{"id":313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-06T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-06T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":41,"origin":{"id":321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-06T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-06T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":42,"origin":{"id":329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-06T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-06T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":43,"origin":{"id":337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-06T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-06T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":44,"origin":{"id":345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-06T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-06T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":45,"origin":{"id":353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-06T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-06T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":46,"origin":{"id":361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-06T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-06T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":47,"origin":{"id":369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-06T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-07T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":48,"origin":{"id":377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-07T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-07T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":49,"origin":{"id":385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-07T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-07T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":50,"origin":{"id":393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-07T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-07T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":51,"origin":{"id":401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-07T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-07T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":52,"origin":{"id":409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-07T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-07T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":53,"origin":{"id":417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-07T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-07T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":54,"origin":{"id":425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-07T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-07T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":55,"origin":{"id":433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-07T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-08T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":56,"origin":{"id":441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-08T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-08T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":57,"origin":{"id":449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-08T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-08T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":58,"origin":{"id":457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-08T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-08T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":59,"origin":{"id":465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-08T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-08T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":60,"origin":{"id":473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-08T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-08T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":61,"origin":{"id":481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-08T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-08T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":62,"origin":{"id":489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-08T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-08T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":63,"origin":{"id":497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-08T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-09T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":64,"origin":{"id":505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-09T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-09T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":65,"origin":{"id":513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-09T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-09T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":66,"origin":{"id":521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-09T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-09T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":67,"origin":{"id":529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-09T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-09T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":68,"origin":{"id":537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-09T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-09T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":69,"origin":{"id":545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-09T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-09T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":70,"origin":{"id":553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-09T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-09T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":71,"origin":{"id":561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-09T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-10T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":72,"origin":{"id":569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-10T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-10T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":73,"origin":{"id":577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-10T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-10T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":74,"origin":{"id":585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-10T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-10T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":75,"origin":{"id":593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-10T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-10T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":76,"origin":{"id":601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-10T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-10T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":77,"origin":{"id":609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-10T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-10T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":78,"origin":{"id":617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-10T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-10T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":79,"origin":{"id":625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-10T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-11T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":80,"origin":{"id":633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-11T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-11T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":81,"origin":{"id":641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-11T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-11T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":82,"origin":{"id":649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-11T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-11T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":83,"origin":{"id":657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-11T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-11T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":84,"origin":{"id":665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-11T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-11T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":85,"origin":{"id":673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-11T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-11T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":86,"origin":{"id":681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-11T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-11T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":87,"origin":{"id":689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-11T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-12T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":88,"origin":{"id":697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-12T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-12T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":89,"origin":{"id":705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-12T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-12T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":90,"origin":{"id":713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-12T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-12T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":91,"origin":{"id":721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-12T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-12T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":92,"origin":{"id":729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-12T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-12T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":93,"origin":{"id":737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-12T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-12T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":94,"origin":{"id":745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-12T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-12T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":95,"origin":{"id":753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-12T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-13T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":96,"origin":{"id":761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-13T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-13T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":97,"origin":{"id":769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-13T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-13T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":98,"origin":{"id":777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-13T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-13T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":99,"origin":{"id":785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-13T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-13T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":100,"origin":{"id":793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-13T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-13T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":101,"origin":{"id":801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-13T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-13T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":102,"origin":{"id":809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-13T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-13T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":103,"origin":{"id":817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-13T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-14T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":104,"origin":{"id":825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-14T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-14T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":105,"origin":{"id":833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-14T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-14T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":106,"origin":{"id":841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-14T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-14T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":107,"origin":{"id":849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-14T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-14T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":108,"origin":{"id":857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-14T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-14T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":109,"origin":{"id":865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-14T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-14T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":110,"origin":{"id":873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-14T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-14T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":111,"origin":{"id":881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-14T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-15T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":112,"origin":{"id":889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-15T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-15T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":113,"origin":{"id":897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-15T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-15T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":114,"origin":{"id":905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-15T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-15T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":115,"origin":{"id":913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-15T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-15T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":116,"origin":{"id":921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-15T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-15T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":117,"origin":{"id":929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-15T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-15T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":118,"origin":{"id":937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-15T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-15T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":119,"origin":{"id":945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-15T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-16T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":120,"origin":{"id":953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-16T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-16T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":121,"origin":{"id":961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-16T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-16T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":122,"origin":{"id":969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-16T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-16T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":123,"origin":{"id":977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-16T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-16T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":124,"origin":{"id":985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-16T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-16T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":125,"origin":{"id":993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-16T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-16T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":126,"origin":{"id":1001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-16T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-16T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":127,"origin":{"id":1009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-16T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-17T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":128,"origin":{"id":1017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-17T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-17T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":129,"origin":{"id":1025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-17T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-17T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":130,"origin":{"id":1033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-17T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-17T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":131,"origin":{"id":1041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-17T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-17T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":132,"origin":{"id":1049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-17T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-17T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":133,"origin":{"id":1057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-17T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-17T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":134,"origin":{"id":1065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-17T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-17T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":135,"origin":{"id":1073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-17T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-18T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":136,"origin":{"id":1081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-18T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-18T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":137,"origin":{"id":1089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-18T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-18T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":138,"origin":{"id":1097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-18T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-18T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":139,"origin":{"id":1105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-18T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-18T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":140,"origin":{"id":1113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-18T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-18T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":141,"origin":{"id":1121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-18T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-18T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":142,"origin":{"id":1129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-18T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-18T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":143,"origin":{"id":1137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-18T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-19T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":144,"origin":{"id":1145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-19T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-19T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":145,"origin":{"id":1153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-19T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-19T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":146,"origin":{"id":1161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-19T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-19T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":147,"origin":{"id":1169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-19T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-19T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":148,"origin":{"id":1177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-19T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-19T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":149,"origin":{"id":1185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-19T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-19T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":150,"origin":{"id":1193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-19T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-19T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":151,"origin":{"id":1201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-19T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-20T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":152,"origin":{"id":1209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-20T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-20T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":153,"origin":{"id":1217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-20T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-20T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":154,"origin":{"id":1225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-20T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-20T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":155,"origin":{"id":1233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-20T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-20T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":156,"origin":{"id":1241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-20T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-20T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":157,"origin":{"id":1249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-20T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-20T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":158,"origin":{"id":1257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-20T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-20T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":159,"origin":{"id":1265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-20T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-21T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":160,"origin":{"id":1273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-21T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-21T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":161,"origin":{"id":1281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-21T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-21T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":162,"origin":{"id":1289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-21T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-21T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":163,"origin":{"id":1297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-21T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-21T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":164,"origin":{"id":1305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-21T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-21T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":165,"origin":{"id":1313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-21T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-21T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":166,"origin":{"id":1321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-21T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-21T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":167,"origin":{"id":1329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-21T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-22T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":168,"origin":{"id":1337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-22T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-22T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":169,"origin":{"id":1345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-22T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-22T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":170,"origin":{"id":1353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-22T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-22T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":171,"origin":{"id":1361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-22T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-22T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":172,"origin":{"id":1369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-22T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-22T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":173,"origin":{"id":1377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-22T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-22T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":174,"origin":{"id":1385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-22T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-22T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":175,"origin":{"id":1393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-22T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-23T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":176,"origin":{"id":1401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-23T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-23T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":177,"origin":{"id":1409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-23T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-23T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":178,"origin":{"id":1417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-23T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-23T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":179,"origin":{"id":1425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-23T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-23T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":180,"origin":{"id":1433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-23T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-23T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":181,"origin":{"id":1441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-23T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-23T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":182,"origin":{"id":1449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-23T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-23T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":183,"origin":{"id":1457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-23T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-24T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":184,"origin":{"id":1465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-24T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-24T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":185,"origin":{"id":1473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-24T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-24T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":186,"origin":{"id":1481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-24T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-24T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":187,"origin":{"id":1489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-24T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-24T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":188,"origin":{"id":1497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-24T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-24T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":189,"origin":{"id":1505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-24T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-24T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":190,"origin":{"id":1513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-24T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-24T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":191,"origin":{"id":1521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-24T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-25T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":192,"origin":{"id":1529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-25T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-25T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":193,"origin":{"id":1537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-25T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-25T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":194,"origin":{"id":1545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-25T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-25T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":195,"origin":{"id":1553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-25T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-25T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":196,"origin":{"id":1561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-25T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-25T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":197,"origin":{"id":1569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-25T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-25T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":198,"origin":{"id":1577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-25T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-25T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":199,"origin":{"id":1585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-25T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-26T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":200,"origin":{"id":1593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-26T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-26T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":201,"origin":{"id":1601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-26T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-26T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":202,"origin":{"id":1609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-26T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-26T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":203,"origin":{"id":1617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-26T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-26T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":204,"origin":{"id":1625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-26T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-26T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":205,"origin":{"id":1633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-26T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-26T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":206,"origin":{"id":1641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-26T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-26T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":207,"origin":{"id":1649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-26T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-27T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":208,"origin":{"id":1657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-27T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-27T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":209,"origin":{"id":1665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-27T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-27T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":210,"origin":{"id":1673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-27T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-27T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":211,"origin":{"id":1681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-27T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-27T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":212,"origin":{"id":1689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-27T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-27T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":213,"origin":{"id":1697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-27T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-27T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":214,"origin":{"id":1705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-27T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-27T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":215,"origin":{"id":1713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-27T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-28T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":216,"origin":{"id":1721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-28T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-28T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":217,"origin":{"id":1729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-28T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-28T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":218,"origin":{"id":1737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-28T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-28T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":219,"origin":{"id":1745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-28T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-28T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":220,"origin":{"id":1753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-28T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-28T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":221,"origin":{"id":1761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-28T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-28T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":222,"origin":{"id":1769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-28T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-28T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":223,"origin":{"id":1777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-28T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-29T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":224,"origin":{"id":1785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-29T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-29T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":225,"origin":{"id":1793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-29T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-29T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":226,"origin":{"id":1801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-29T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-29T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":227,"origin":{"id":1809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-29T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-29T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":228,"origin":{"id":1817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-29T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-29T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":229,"origin":{"id":1825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-29T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-29T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":230,"origin":{"id":1833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-29T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-29T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":231,"origin":{"id":1841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-29T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-30T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":232,"origin":{"id":1849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-30T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-30T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":233,"origin":{"id":1857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-30T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-30T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":234,"origin":{"id":1865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-30T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-30T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":235,"origin":{"id":1873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-30T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-30T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":236,"origin":{"id":1881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-30T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-30T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":237,"origin":{"id":1889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-30T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-30T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":238,"origin":{"id":1897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-30T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-06-30T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":239,"origin":{"id":1905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-06-30T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-01T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":240,"origin":{"id":1913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-01T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-01T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":241,"origin":{"id":1921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-01T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-01T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":242,"origin":{"id":1929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-01T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-01T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":243,"origin":{"id":1937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-01T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-01T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":244,"origin":{"id":1945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-01T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-01T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":245,"origin":{"id":1953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-01T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-01T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":246,"origin":{"id":1961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-01T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-01T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":247,"origin":{"id":1969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-01T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-02T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":248,"origin":{"id":1977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-02T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":1984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-02T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":249,"origin":{"id":1985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-02T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":1992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-02T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":250,"origin":{"id":1993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-02T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-02T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":251,"origin":{"id":2001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-02T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-02T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":252,"origin":{"id":2009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-02T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-02T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":253,"origin":{"id":2017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-02T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-02T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":254,"origin":{"id":2025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-02T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-02T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":255,"origin":{"id":2033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-02T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-03T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":256,"origin":{"id":2041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-03T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-03T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":257,"origin":{"id":2049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-03T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-03T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":258,"origin":{"id":2057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-03T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-03T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":259,"origin":{"id":2065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-03T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-03T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":260,"origin":{"id":2073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-03T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-03T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":261,"origin":{"id":2081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-03T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-03T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":262,"origin":{"id":2089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-03T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-03T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":263,"origin":{"id":2097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-03T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-04T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":264,"origin":{"id":2105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-04T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-04T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":265,"origin":{"id":2113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-04T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-04T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":266,"origin":{"id":2121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-04T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-04T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":267,"origin":{"id":2129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-04T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-04T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":268,"origin":{"id":2137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-04T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-04T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":269,"origin":{"id":2145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-04T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-04T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":270,"origin":{"id":2153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-04T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-04T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":271,"origin":{"id":2161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-04T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-05T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":272,"origin":{"id":2169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-05T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-05T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":273,"origin":{"id":2177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-05T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-05T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":274,"origin":{"id":2185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-05T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-05T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":275,"origin":{"id":2193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-05T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-05T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":276,"origin":{"id":2201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-05T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-05T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":277,"origin":{"id":2209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-05T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-05T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":278,"origin":{"id":2217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-05T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-05T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":279,"origin":{"id":2225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-05T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-06T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":280,"origin":{"id":2233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-06T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-06T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":281,"origin":{"id":2241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-06T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-06T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":282,"origin":{"id":2249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-06T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-06T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":283,"origin":{"id":2257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-06T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-06T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":284,"origin":{"id":2265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-06T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-06T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":285,"origin":{"id":2273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-06T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-06T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":286,"origin":{"id":2281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-06T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-06T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":287,"origin":{"id":2289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-06T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-07T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":288,"origin":{"id":2297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-07T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-07T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":289,"origin":{"id":2305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-07T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-07T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":290,"origin":{"id":2313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-07T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-07T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":291,"origin":{"id":2321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-07T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-07T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":292,"origin":{"id":2329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-07T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-07T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":293,"origin":{"id":2337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-07T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-07T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":294,"origin":{"id":2345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-07T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-07T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":295,"origin":{"id":2353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-07T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-08T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":296,"origin":{"id":2361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-08T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-08T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":297,"origin":{"id":2369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-08T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-08T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":298,"origin":{"id":2377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-08T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-08T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":299,"origin":{"id":2385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-08T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-08T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":300,"origin":{"id":2393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-08T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-08T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":301,"origin":{"id":2401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-08T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-08T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":302,"origin":{"id":2409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-08T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-08T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":303,"origin":{"id":2417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-08T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-09T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":304,"origin":{"id":2425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-09T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-09T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":305,"origin":{"id":2433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-09T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-09T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":306,"origin":{"id":2441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-09T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-09T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":307,"origin":{"id":2449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-09T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-09T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":308,"origin":{"id":2457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-09T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-09T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":309,"origin":{"id":2465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-09T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-09T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":310,"origin":{"id":2473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-09T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-09T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":311,"origin":{"id":2481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-09T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-10T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":312,"origin":{"id":2489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-10T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-10T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":313,"origin":{"id":2497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-10T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-10T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":314,"origin":{"id":2505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-10T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-10T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":315,"origin":{"id":2513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-10T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-10T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":316,"origin":{"id":2521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-10T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-10T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":317,"origin":{"id":2529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-10T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-10T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":318,"origin":{"id":2537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-10T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-10T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":319,"origin":{"id":2545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-10T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-11T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":320,"origin":{"id":2553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-11T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-11T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":321,"origin":{"id":2561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-11T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-11T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":322,"origin":{"id":2569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-11T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-11T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":323,"origin":{"id":2577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-11T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-11T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":324,"origin":{"id":2585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-11T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-11T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":325,"origin":{"id":2593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-11T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-11T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":326,"origin":{"id":2601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-11T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-11T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":327,"origin":{"id":2609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-11T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-12T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":328,"origin":{"id":2617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-12T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-12T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":329,"origin":{"id":2625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-12T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-12T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":330,"origin":{"id":2633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-12T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-12T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":331,"origin":{"id":2641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-12T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-12T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":332,"origin":{"id":2649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-12T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-12T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":333,"origin":{"id":2657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-12T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-12T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":334,"origin":{"id":2665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-12T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-12T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":335,"origin":{"id":2673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-12T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-13T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":336,"origin":{"id":2681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-13T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-13T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":337,"origin":{"id":2689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-13T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-13T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":338,"origin":{"id":2697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-13T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-13T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":339,"origin":{"id":2705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-13T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-13T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":340,"origin":{"id":2713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-13T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-13T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":341,"origin":{"id":2721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-13T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-13T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":342,"origin":{"id":2729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-13T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-13T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":343,"origin":{"id":2737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-13T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-14T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":344,"origin":{"id":2745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-14T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-14T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":345,"origin":{"id":2753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-14T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-14T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":346,"origin":{"id":2761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-14T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-14T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":347,"origin":{"id":2769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-14T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-14T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":348,"origin":{"id":2777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-14T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-14T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":349,"origin":{"id":2785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-14T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-14T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":350,"origin":{"id":2793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-14T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-14T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":351,"origin":{"id":2801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-14T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-15T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":352,"origin":{"id":2809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-15T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-15T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":353,"origin":{"id":2817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-15T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-15T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":354,"origin":{"id":2825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-15T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-15T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":355,"origin":{"id":2833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-15T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-15T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":356,"origin":{"id":2841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-15T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-15T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":357,"origin":{"id":2849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-15T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-15T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":358,"origin":{"id":2857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-15T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-15T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":359,"origin":{"id":2865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-15T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-16T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":360,"origin":{"id":2873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-16T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-16T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":361,"origin":{"id":2881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-16T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-16T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":362,"origin":{"id":2889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-16T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-16T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":363,"origin":{"id":2897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-16T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-16T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":364,"origin":{"id":2905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-16T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-16T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":365,"origin":{"id":2913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-16T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-16T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":366,"origin":{"id":2921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-16T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-16T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":367,"origin":{"id":2929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-16T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-17T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":368,"origin":{"id":2937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-17T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-17T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":369,"origin":{"id":2945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-17T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-17T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":370,"origin":{"id":2953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-17T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-17T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":371,"origin":{"id":2961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-17T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-17T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":372,"origin":{"id":2969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-17T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-17T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":373,"origin":{"id":2977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-17T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":2984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-17T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":374,"origin":{"id":2985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-17T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":2992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-17T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":375,"origin":{"id":2993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-17T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-18T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":376,"origin":{"id":3001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-18T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-18T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":377,"origin":{"id":3009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-18T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-18T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":378,"origin":{"id":3017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-18T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-18T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":379,"origin":{"id":3025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-18T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-18T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":380,"origin":{"id":3033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-18T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-18T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":381,"origin":{"id":3041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-18T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-18T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":382,"origin":{"id":3049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-18T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-18T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":383,"origin":{"id":3057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-18T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-19T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":384,"origin":{"id":3065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-19T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-19T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":385,"origin":{"id":3073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-19T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-19T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":386,"origin":{"id":3081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-19T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-19T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":387,"origin":{"id":3089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-19T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-19T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":388,"origin":{"id":3097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-19T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-19T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":389,"origin":{"id":3105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-19T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-19T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":390,"origin":{"id":3113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-19T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-19T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":391,"origin":{"id":3121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-19T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-20T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":392,"origin":{"id":3129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-20T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-20T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":393,"origin":{"id":3137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-20T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-20T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":394,"origin":{"id":3145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-20T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-20T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":395,"origin":{"id":3153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-20T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-20T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":396,"origin":{"id":3161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-20T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-20T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":397,"origin":{"id":3169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-20T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-20T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":398,"origin":{"id":3177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-20T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-20T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":399,"origin":{"id":3185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-20T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-21T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":400,"origin":{"id":3193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-21T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-21T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":401,"origin":{"id":3201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-21T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-21T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":402,"origin":{"id":3209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-21T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-21T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":403,"origin":{"id":3217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-21T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-21T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":404,"origin":{"id":3225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-21T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-21T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":405,"origin":{"id":3233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-21T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-21T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":406,"origin":{"id":3241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-21T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-21T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":407,"origin":{"id":3249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-21T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-22T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":408,"origin":{"id":3257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-22T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-22T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":409,"origin":{"id":3265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-22T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-22T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":410,"origin":{"id":3273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-22T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-22T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":411,"origin":{"id":3281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-22T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-22T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":412,"origin":{"id":3289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-22T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-22T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":413,"origin":{"id":3297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-22T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-22T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":414,"origin":{"id":3305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-22T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-22T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":415,"origin":{"id":3313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-22T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-23T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":416,"origin":{"id":3321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-23T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-23T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":417,"origin":{"id":3329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-23T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-23T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":418,"origin":{"id":3337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-23T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-23T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":419,"origin":{"id":3345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-23T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-23T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":420,"origin":{"id":3353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-23T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-23T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":421,"origin":{"id":3361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-23T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-23T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":422,"origin":{"id":3369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-23T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-23T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":423,"origin":{"id":3377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-23T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-24T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":424,"origin":{"id":3385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-24T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-24T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":425,"origin":{"id":3393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-24T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-24T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":426,"origin":{"id":3401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-24T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-24T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":427,"origin":{"id":3409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-24T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-24T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":428,"origin":{"id":3417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-24T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-24T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":429,"origin":{"id":3425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-24T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-24T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":430,"origin":{"id":3433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-24T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-24T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":431,"origin":{"id":3441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-24T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-25T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":432,"origin":{"id":3449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-25T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-25T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":433,"origin":{"id":3457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-25T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-25T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":434,"origin":{"id":3465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-25T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-25T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":435,"origin":{"id":3473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-25T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-25T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":436,"origin":{"id":3481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-25T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-25T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":437,"origin":{"id":3489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-25T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-25T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":438,"origin":{"id":3497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-25T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-25T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":439,"origin":{"id":3505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-25T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-26T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":440,"origin":{"id":3513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-26T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-26T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":441,"origin":{"id":3521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-26T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-26T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":442,"origin":{"id":3529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-26T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-26T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":443,"origin":{"id":3537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-26T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-26T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":444,"origin":{"id":3545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-26T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-26T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":445,"origin":{"id":3553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-26T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-26T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":446,"origin":{"id":3561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-26T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-26T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":447,"origin":{"id":3569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-26T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-27T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":448,"origin":{"id":3577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-27T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-27T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":449,"origin":{"id":3585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-27T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-27T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":450,"origin":{"id":3593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-27T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-27T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":451,"origin":{"id":3601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-27T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-27T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":452,"origin":{"id":3609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-27T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-27T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":453,"origin":{"id":3617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-27T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-27T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":454,"origin":{"id":3625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-27T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-27T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":455,"origin":{"id":3633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-27T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-28T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":456,"origin":{"id":3641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-28T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-28T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":457,"origin":{"id":3649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-28T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-28T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":458,"origin":{"id":3657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-28T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-28T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":459,"origin":{"id":3665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-28T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-28T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":460,"origin":{"id":3673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-28T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-28T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":461,"origin":{"id":3681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-28T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-28T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":462,"origin":{"id":3689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-28T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-28T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":463,"origin":{"id":3697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-28T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-29T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":464,"origin":{"id":3705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-29T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-29T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":465,"origin":{"id":3713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-29T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-29T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":466,"origin":{"id":3721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-29T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-29T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":467,"origin":{"id":3729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-29T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-29T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":468,"origin":{"id":3737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-29T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-29T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":469,"origin":{"id":3745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-29T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-29T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":470,"origin":{"id":3753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-29T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-29T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":471,"origin":{"id":3761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-29T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-30T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":472,"origin":{"id":3769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-30T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-30T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":473,"origin":{"id":3777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-30T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-30T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":474,"origin":{"id":3785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-30T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-30T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":475,"origin":{"id":3793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-30T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-30T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":476,"origin":{"id":3801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-30T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-30T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":477,"origin":{"id":3809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-30T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-30T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":478,"origin":{"id":3817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-30T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-30T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":479,"origin":{"id":3825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-30T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-31T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":480,"origin":{"id":3833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-31T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-31T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":481,"origin":{"id":3841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-31T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-31T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":482,"origin":{"id":3849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-31T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-31T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":483,"origin":{"id":3857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-31T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-31T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":484,"origin":{"id":3865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-31T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-31T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":485,"origin":{"id":3873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-31T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-31T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":486,"origin":{"id":3881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-31T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-07-31T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":487,"origin":{"id":3889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-07-31T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-01T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":488,"origin":{"id":3897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-01T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-01T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":489,"origin":{"id":3905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-01T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-01T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":490,"origin":{"id":3913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-01T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-01T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":491,"origin":{"id":3921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-01T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-01T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":492,"origin":{"id":3929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-01T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-01T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":493,"origin":{"id":3937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-01T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-01T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":494,"origin":{"id":3945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-01T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-01T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":495,"origin":{"id":3953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-01T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-02T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":496,"origin":{"id":3961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-02T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-02T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":497,"origin":{"id":3969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-02T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-02T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":498,"origin":{"id":3977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-02T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":3984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-02T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":499,"origin":{"id":3985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-02T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":3992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-02T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":500,"origin":{"id":3993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-02T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-02T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":501,"origin":{"id":4001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-02T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-02T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":502,"origin":{"id":4009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-02T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-02T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":503,"origin":{"id":4017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-02T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-03T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":504,"origin":{"id":4025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-03T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-03T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":505,"origin":{"id":4033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-03T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-03T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":506,"origin":{"id":4041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-03T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-03T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":507,"origin":{"id":4049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-03T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-03T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":508,"origin":{"id":4057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-03T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-03T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":509,"origin":{"id":4065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-03T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-03T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":510,"origin":{"id":4073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-03T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-03T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":511,"origin":{"id":4081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-03T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-04T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":512,"origin":{"id":4089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-04T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-04T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":513,"origin":{"id":4097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-04T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-04T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":514,"origin":{"id":4105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-04T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-04T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":515,"origin":{"id":4113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-04T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-04T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":516,"origin":{"id":4121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-04T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-04T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":517,"origin":{"id":4129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-04T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-04T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":518,"origin":{"id":4137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-04T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-04T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":519,"origin":{"id":4145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-04T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-05T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":520,"origin":{"id":4153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-05T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-05T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":521,"origin":{"id":4161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-05T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-05T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":522,"origin":{"id":4169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-05T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-05T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":523,"origin":{"id":4177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-05T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-05T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":524,"origin":{"id":4185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-05T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-05T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":525,"origin":{"id":4193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-05T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-05T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":526,"origin":{"id":4201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-05T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-05T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":527,"origin":{"id":4209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-05T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-06T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":528,"origin":{"id":4217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-06T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-06T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":529,"origin":{"id":4225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-06T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-06T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":530,"origin":{"id":4233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-06T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-06T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":531,"origin":{"id":4241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-06T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-06T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":532,"origin":{"id":4249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-06T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-06T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":533,"origin":{"id":4257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-06T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-06T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":534,"origin":{"id":4265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-06T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-06T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":535,"origin":{"id":4273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-06T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-07T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":536,"origin":{"id":4281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-07T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-07T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":537,"origin":{"id":4289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-07T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-07T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":538,"origin":{"id":4297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-07T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-07T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":539,"origin":{"id":4305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-07T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-07T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":540,"origin":{"id":4313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-07T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-07T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":541,"origin":{"id":4321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-07T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-07T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":542,"origin":{"id":4329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-07T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-07T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":543,"origin":{"id":4337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-07T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-08T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":544,"origin":{"id":4345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-08T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-08T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":545,"origin":{"id":4353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-08T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-08T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":546,"origin":{"id":4361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-08T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-08T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":547,"origin":{"id":4369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-08T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-08T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":548,"origin":{"id":4377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-08T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-08T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":549,"origin":{"id":4385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-08T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-08T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":550,"origin":{"id":4393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-08T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-08T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":551,"origin":{"id":4401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-08T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-09T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":552,"origin":{"id":4409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-09T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-09T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":553,"origin":{"id":4417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-09T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-09T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":554,"origin":{"id":4425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-09T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-09T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":555,"origin":{"id":4433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-09T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-09T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":556,"origin":{"id":4441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-09T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-09T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":557,"origin":{"id":4449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-09T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-09T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":558,"origin":{"id":4457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-09T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-09T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":559,"origin":{"id":4465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-09T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-10T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":560,"origin":{"id":4473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-10T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-10T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":561,"origin":{"id":4481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-10T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-10T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":562,"origin":{"id":4489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-10T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-10T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":563,"origin":{"id":4497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-10T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-10T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":564,"origin":{"id":4505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-10T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-10T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":565,"origin":{"id":4513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-10T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-10T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":566,"origin":{"id":4521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-10T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-10T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":567,"origin":{"id":4529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-10T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-11T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":568,"origin":{"id":4537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-11T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-11T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":569,"origin":{"id":4545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-11T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-11T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":570,"origin":{"id":4553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-11T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-11T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":571,"origin":{"id":4561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-11T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-11T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":572,"origin":{"id":4569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-11T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-11T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":573,"origin":{"id":4577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-11T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-11T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":574,"origin":{"id":4585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-11T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-11T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":575,"origin":{"id":4593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-11T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-12T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":576,"origin":{"id":4601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-12T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-12T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":577,"origin":{"id":4609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-12T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-12T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":578,"origin":{"id":4617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-12T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-12T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":579,"origin":{"id":4625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-12T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-12T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":580,"origin":{"id":4633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-12T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-12T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":581,"origin":{"id":4641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-12T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-12T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":582,"origin":{"id":4649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-12T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-12T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":583,"origin":{"id":4657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-12T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-13T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":584,"origin":{"id":4665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-13T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-13T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":585,"origin":{"id":4673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-13T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-13T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":586,"origin":{"id":4681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-13T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-13T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":587,"origin":{"id":4689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-13T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-13T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":588,"origin":{"id":4697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-13T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-13T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":589,"origin":{"id":4705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-13T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-13T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":590,"origin":{"id":4713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-13T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-13T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":591,"origin":{"id":4721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-13T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-14T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":592,"origin":{"id":4729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-14T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-14T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":593,"origin":{"id":4737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-14T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-14T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":594,"origin":{"id":4745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-14T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-14T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":595,"origin":{"id":4753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-14T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-14T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":596,"origin":{"id":4761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-14T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-14T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":597,"origin":{"id":4769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-14T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-14T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":598,"origin":{"id":4777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-14T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-14T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":599,"origin":{"id":4785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-14T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-15T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":600,"origin":{"id":4793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-15T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-15T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":601,"origin":{"id":4801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-15T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-15T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":602,"origin":{"id":4809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-15T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-15T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":603,"origin":{"id":4817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-15T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-15T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":604,"origin":{"id":4825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-15T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-15T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":605,"origin":{"id":4833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-15T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-15T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":606,"origin":{"id":4841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-15T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-15T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":607,"origin":{"id":4849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-15T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-16T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":608,"origin":{"id":4857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-16T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-16T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":609,"origin":{"id":4865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-16T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-16T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":610,"origin":{"id":4873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-16T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-16T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":611,"origin":{"id":4881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-16T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-16T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":612,"origin":{"id":4889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-16T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-16T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":613,"origin":{"id":4897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-16T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-16T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":614,"origin":{"id":4905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-16T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-16T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":615,"origin":{"id":4913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-16T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-17T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":616,"origin":{"id":4921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-17T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-17T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":617,"origin":{"id":4929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-17T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-17T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":618,"origin":{"id":4937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-17T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-17T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":619,"origin":{"id":4945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-17T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-17T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":620,"origin":{"id":4953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-17T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-17T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":621,"origin":{"id":4961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-17T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-17T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":622,"origin":{"id":4969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-17T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-17T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":623,"origin":{"id":4977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-17T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":4984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-18T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":624,"origin":{"id":4985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-18T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":4992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-18T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":625,"origin":{"id":4993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-18T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-18T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":626,"origin":{"id":5001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-18T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-18T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":627,"origin":{"id":5009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-18T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-18T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":628,"origin":{"id":5017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-18T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-18T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":629,"origin":{"id":5025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-18T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-18T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":630,"origin":{"id":5033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-18T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-18T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":631,"origin":{"id":5041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-18T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-19T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":632,"origin":{"id":5049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-19T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-19T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":633,"origin":{"id":5057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-19T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-19T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":634,"origin":{"id":5065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-19T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-19T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":635,"origin":{"id":5073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-19T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-19T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":636,"origin":{"id":5081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-19T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-19T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":637,"origin":{"id":5089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-19T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-19T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":638,"origin":{"id":5097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-19T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-19T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":639,"origin":{"id":5105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-19T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-20T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":640,"origin":{"id":5113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-20T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-20T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":641,"origin":{"id":5121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-20T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-20T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":642,"origin":{"id":5129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-20T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-20T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":643,"origin":{"id":5137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-20T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-20T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":644,"origin":{"id":5145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-20T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-20T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":645,"origin":{"id":5153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-20T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-20T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":646,"origin":{"id":5161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-20T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-20T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":647,"origin":{"id":5169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-20T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-21T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":648,"origin":{"id":5177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-21T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-21T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":649,"origin":{"id":5185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-21T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-21T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":650,"origin":{"id":5193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-21T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-21T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":651,"origin":{"id":5201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-21T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-21T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":652,"origin":{"id":5209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-21T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-21T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":653,"origin":{"id":5217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-21T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-21T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":654,"origin":{"id":5225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-21T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-21T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":655,"origin":{"id":5233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-21T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-22T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":656,"origin":{"id":5241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-22T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-22T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":657,"origin":{"id":5249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-22T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-22T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":658,"origin":{"id":5257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-22T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-22T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":659,"origin":{"id":5265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-22T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-22T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":660,"origin":{"id":5273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-22T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-22T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":661,"origin":{"id":5281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-22T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-22T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":662,"origin":{"id":5289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-22T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-22T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":663,"origin":{"id":5297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-22T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-23T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":664,"origin":{"id":5305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-23T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-23T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":665,"origin":{"id":5313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-23T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-23T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":666,"origin":{"id":5321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-23T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-23T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":667,"origin":{"id":5329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-23T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-23T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":668,"origin":{"id":5337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-23T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-23T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":669,"origin":{"id":5345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-23T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-23T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":670,"origin":{"id":5353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-23T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-23T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":671,"origin":{"id":5361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-23T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-24T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":672,"origin":{"id":5369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-24T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-24T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":673,"origin":{"id":5377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-24T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-24T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":674,"origin":{"id":5385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-24T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-24T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":675,"origin":{"id":5393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-24T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-24T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":676,"origin":{"id":5401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-24T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-24T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":677,"origin":{"id":5409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-24T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-24T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":678,"origin":{"id":5417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-24T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-24T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":679,"origin":{"id":5425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-24T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-25T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":680,"origin":{"id":5433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-25T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-25T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":681,"origin":{"id":5441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-25T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-25T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":682,"origin":{"id":5449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-25T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-25T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":683,"origin":{"id":5457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-25T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-25T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":684,"origin":{"id":5465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-25T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-25T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":685,"origin":{"id":5473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-25T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-25T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":686,"origin":{"id":5481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-25T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-25T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":687,"origin":{"id":5489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-25T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-26T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":688,"origin":{"id":5497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-26T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-26T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":689,"origin":{"id":5505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-26T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-26T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":690,"origin":{"id":5513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-26T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-26T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":691,"origin":{"id":5521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-26T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-26T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":692,"origin":{"id":5529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-26T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-26T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":693,"origin":{"id":5537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-26T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-26T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":694,"origin":{"id":5545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-26T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-26T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":695,"origin":{"id":5553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-26T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-27T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":696,"origin":{"id":5561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-27T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-27T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":697,"origin":{"id":5569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-27T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-27T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":698,"origin":{"id":5577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-27T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-27T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":699,"origin":{"id":5585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-27T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-27T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":700,"origin":{"id":5593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-27T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-27T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":701,"origin":{"id":5601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-27T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-27T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":702,"origin":{"id":5609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-27T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-27T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":703,"origin":{"id":5617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-27T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-28T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":704,"origin":{"id":5625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-28T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-28T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":705,"origin":{"id":5633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-28T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-28T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":706,"origin":{"id":5641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-28T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-28T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":707,"origin":{"id":5649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-28T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-28T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":708,"origin":{"id":5657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-28T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-28T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":709,"origin":{"id":5665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-28T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-28T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":710,"origin":{"id":5673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-28T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-28T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":711,"origin":{"id":5681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-28T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-29T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":712,"origin":{"id":5689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-29T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-29T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":713,"origin":{"id":5697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-29T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-29T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":714,"origin":{"id":5705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-29T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-29T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":715,"origin":{"id":5713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-29T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-29T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":716,"origin":{"id":5721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-29T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-29T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":717,"origin":{"id":5729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-29T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-29T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":718,"origin":{"id":5737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-29T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-29T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":719,"origin":{"id":5745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-29T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-30T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":720,"origin":{"id":5753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-30T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-30T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":721,"origin":{"id":5761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-30T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-30T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":722,"origin":{"id":5769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-30T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-30T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":723,"origin":{"id":5777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-30T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-30T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":724,"origin":{"id":5785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-30T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-30T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":725,"origin":{"id":5793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-30T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-30T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":726,"origin":{"id":5801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-30T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-30T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":727,"origin":{"id":5809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-30T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-31T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":728,"origin":{"id":5817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-31T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-31T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":729,"origin":{"id":5825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-31T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-31T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":730,"origin":{"id":5833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-31T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-31T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":731,"origin":{"id":5841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-31T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-31T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":732,"origin":{"id":5849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-31T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-31T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":733,"origin":{"id":5857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-31T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-31T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":734,"origin":{"id":5865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-31T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-08-31T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":735,"origin":{"id":5873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-08-31T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-01T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":736,"origin":{"id":5881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-01T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-01T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":737,"origin":{"id":5889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-01T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-01T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":738,"origin":{"id":5897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-01T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-01T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":739,"origin":{"id":5905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-01T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-01T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":740,"origin":{"id":5913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-01T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-01T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":741,"origin":{"id":5921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-01T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-01T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":742,"origin":{"id":5929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-01T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-01T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":743,"origin":{"id":5937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-01T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-02T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":744,"origin":{"id":5945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-02T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-02T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":745,"origin":{"id":5953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-02T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-02T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":746,"origin":{"id":5961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-02T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-02T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":747,"origin":{"id":5969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-02T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-02T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":748,"origin":{"id":5977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-02T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":5984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-02T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":749,"origin":{"id":5985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-02T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":5992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-02T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":750,"origin":{"id":5993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-02T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-02T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":751,"origin":{"id":6001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-02T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-03T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":752,"origin":{"id":6009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-03T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-03T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":753,"origin":{"id":6017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-03T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-03T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":754,"origin":{"id":6025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-03T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-03T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":755,"origin":{"id":6033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-03T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-03T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":756,"origin":{"id":6041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-03T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-03T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":757,"origin":{"id":6049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-03T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-03T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":758,"origin":{"id":6057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-03T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-03T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":759,"origin":{"id":6065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-03T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-04T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":760,"origin":{"id":6073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-04T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-04T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":761,"origin":{"id":6081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-04T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-04T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":762,"origin":{"id":6089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-04T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-04T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":763,"origin":{"id":6097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-04T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-04T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":764,"origin":{"id":6105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-04T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-04T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":765,"origin":{"id":6113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-04T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-04T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":766,"origin":{"id":6121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-04T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-04T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":767,"origin":{"id":6129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-04T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-05T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":768,"origin":{"id":6137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-05T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-05T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":769,"origin":{"id":6145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-05T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-05T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":770,"origin":{"id":6153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-05T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-05T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":771,"origin":{"id":6161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-05T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-05T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":772,"origin":{"id":6169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-05T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-05T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":773,"origin":{"id":6177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-05T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-05T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":774,"origin":{"id":6185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-05T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-05T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":775,"origin":{"id":6193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-05T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-06T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":776,"origin":{"id":6201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-06T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-06T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":777,"origin":{"id":6209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-06T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-06T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":778,"origin":{"id":6217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-06T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-06T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":779,"origin":{"id":6225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-06T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-06T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":780,"origin":{"id":6233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-06T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-06T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":781,"origin":{"id":6241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-06T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-06T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":782,"origin":{"id":6249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-06T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-06T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":783,"origin":{"id":6257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-06T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-07T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":784,"origin":{"id":6265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-07T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-07T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":785,"origin":{"id":6273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-07T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-07T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":786,"origin":{"id":6281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-07T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-07T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":787,"origin":{"id":6289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-07T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-07T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":788,"origin":{"id":6297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-07T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-07T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":789,"origin":{"id":6305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-07T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-07T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":790,"origin":{"id":6313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-07T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-07T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":791,"origin":{"id":6321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-07T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-08T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":792,"origin":{"id":6329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-08T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-08T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":793,"origin":{"id":6337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-08T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-08T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":794,"origin":{"id":6345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-08T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-08T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":795,"origin":{"id":6353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-08T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-08T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":796,"origin":{"id":6361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-08T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-08T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":797,"origin":{"id":6369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-08T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-08T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":798,"origin":{"id":6377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-08T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-08T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":799,"origin":{"id":6385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-08T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-09T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":800,"origin":{"id":6393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-09T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-09T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":801,"origin":{"id":6401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-09T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-09T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":802,"origin":{"id":6409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-09T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-09T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":803,"origin":{"id":6417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-09T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-09T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":804,"origin":{"id":6425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-09T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-09T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":805,"origin":{"id":6433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-09T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-09T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":806,"origin":{"id":6441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-09T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-09T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":807,"origin":{"id":6449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-09T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-10T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":808,"origin":{"id":6457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-10T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-10T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":809,"origin":{"id":6465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-10T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-10T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":810,"origin":{"id":6473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-10T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-10T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":811,"origin":{"id":6481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-10T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-10T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":812,"origin":{"id":6489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-10T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-10T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":813,"origin":{"id":6497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-10T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-10T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":814,"origin":{"id":6505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-10T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-10T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":815,"origin":{"id":6513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-10T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-11T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":816,"origin":{"id":6521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-11T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-11T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":817,"origin":{"id":6529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-11T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-11T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":818,"origin":{"id":6537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-11T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-11T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":819,"origin":{"id":6545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-11T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-11T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":820,"origin":{"id":6553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-11T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-11T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":821,"origin":{"id":6561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-11T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-11T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":822,"origin":{"id":6569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-11T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-11T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":823,"origin":{"id":6577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-11T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-12T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":824,"origin":{"id":6585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-12T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-12T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":825,"origin":{"id":6593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-12T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-12T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":826,"origin":{"id":6601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-12T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-12T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":827,"origin":{"id":6609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-12T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-12T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":828,"origin":{"id":6617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-12T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-12T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":829,"origin":{"id":6625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-12T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-12T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":830,"origin":{"id":6633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-12T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-12T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":831,"origin":{"id":6641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-12T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-13T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":832,"origin":{"id":6649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-13T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-13T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":833,"origin":{"id":6657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-13T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-13T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":834,"origin":{"id":6665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-13T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-13T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":835,"origin":{"id":6673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-13T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-13T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":836,"origin":{"id":6681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-13T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-13T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":837,"origin":{"id":6689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-13T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-13T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":838,"origin":{"id":6697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-13T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-13T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":839,"origin":{"id":6705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-13T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-14T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":840,"origin":{"id":6713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-14T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-14T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":841,"origin":{"id":6721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-14T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-14T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":842,"origin":{"id":6729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-14T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-14T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":843,"origin":{"id":6737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-14T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-14T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":844,"origin":{"id":6745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-14T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-14T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":845,"origin":{"id":6753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-14T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-14T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":846,"origin":{"id":6761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-14T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-14T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":847,"origin":{"id":6769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-14T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-15T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":848,"origin":{"id":6777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-15T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-15T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":849,"origin":{"id":6785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-15T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-15T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":850,"origin":{"id":6793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-15T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-15T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":851,"origin":{"id":6801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-15T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-15T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":852,"origin":{"id":6809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-15T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-15T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":853,"origin":{"id":6817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-15T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-15T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":854,"origin":{"id":6825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-15T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-15T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":855,"origin":{"id":6833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-15T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-16T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":856,"origin":{"id":6841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-16T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-16T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":857,"origin":{"id":6849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-16T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-16T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":858,"origin":{"id":6857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-16T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-16T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":859,"origin":{"id":6865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-16T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-16T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":860,"origin":{"id":6873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-16T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-16T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":861,"origin":{"id":6881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-16T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-16T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":862,"origin":{"id":6889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-16T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-16T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":863,"origin":{"id":6897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-16T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-17T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":864,"origin":{"id":6905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-17T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-17T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":865,"origin":{"id":6913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-17T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-17T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":866,"origin":{"id":6921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-17T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-17T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":867,"origin":{"id":6929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-17T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-17T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":868,"origin":{"id":6937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-17T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-17T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":869,"origin":{"id":6945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-17T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-17T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":870,"origin":{"id":6953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-17T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-17T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":871,"origin":{"id":6961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-17T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-18T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":872,"origin":{"id":6969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-18T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-18T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":873,"origin":{"id":6977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-18T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":6984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-18T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":874,"origin":{"id":6985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-18T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":6992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-18T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":875,"origin":{"id":6993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-18T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-18T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":876,"origin":{"id":7001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-18T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-18T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":877,"origin":{"id":7009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-18T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-18T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":878,"origin":{"id":7017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-18T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-18T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":879,"origin":{"id":7025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-18T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-19T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":880,"origin":{"id":7033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-19T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-19T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":881,"origin":{"id":7041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-19T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-19T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":882,"origin":{"id":7049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-19T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-19T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":883,"origin":{"id":7057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-19T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-19T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":884,"origin":{"id":7065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-19T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-19T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":885,"origin":{"id":7073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-19T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-19T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":886,"origin":{"id":7081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-19T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-19T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":887,"origin":{"id":7089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-19T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-20T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":888,"origin":{"id":7097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-20T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-20T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":889,"origin":{"id":7105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-20T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-20T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":890,"origin":{"id":7113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-20T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-20T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":891,"origin":{"id":7121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-20T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-20T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":892,"origin":{"id":7129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-20T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-20T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":893,"origin":{"id":7137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-20T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-20T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":894,"origin":{"id":7145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-20T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-20T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":895,"origin":{"id":7153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-20T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-21T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":896,"origin":{"id":7161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-21T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-21T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":897,"origin":{"id":7169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-21T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-21T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":898,"origin":{"id":7177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-21T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-21T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":899,"origin":{"id":7185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-21T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-21T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":900,"origin":{"id":7193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-21T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-21T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":901,"origin":{"id":7201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-21T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-21T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":902,"origin":{"id":7209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-21T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-21T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":903,"origin":{"id":7217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-21T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-22T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":904,"origin":{"id":7225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-22T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-22T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":905,"origin":{"id":7233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-22T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-22T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":906,"origin":{"id":7241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-22T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-22T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":907,"origin":{"id":7249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-22T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-22T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":908,"origin":{"id":7257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-22T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-22T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":909,"origin":{"id":7265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-22T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-22T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":910,"origin":{"id":7273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-22T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-22T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":911,"origin":{"id":7281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-22T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-23T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":912,"origin":{"id":7289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-23T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-23T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":913,"origin":{"id":7297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-23T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-23T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":914,"origin":{"id":7305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-23T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-23T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":915,"origin":{"id":7313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-23T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-23T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":916,"origin":{"id":7321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-23T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-23T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":917,"origin":{"id":7329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-23T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-23T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":918,"origin":{"id":7337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-23T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-23T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":919,"origin":{"id":7345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-23T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-24T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":920,"origin":{"id":7353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-24T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-24T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":921,"origin":{"id":7361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-24T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-24T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":922,"origin":{"id":7369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-24T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-24T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":923,"origin":{"id":7377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-24T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-24T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":924,"origin":{"id":7385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-24T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-24T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":925,"origin":{"id":7393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-24T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-24T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":926,"origin":{"id":7401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-24T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-24T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":927,"origin":{"id":7409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-24T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-25T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":928,"origin":{"id":7417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-25T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-25T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":929,"origin":{"id":7425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-25T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-25T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":930,"origin":{"id":7433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-25T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-25T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":931,"origin":{"id":7441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-25T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-25T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":932,"origin":{"id":7449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-25T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-25T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":933,"origin":{"id":7457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-25T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-25T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":934,"origin":{"id":7465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-25T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-25T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":935,"origin":{"id":7473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-25T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-26T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":936,"origin":{"id":7481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-26T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-26T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":937,"origin":{"id":7489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-26T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-26T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":938,"origin":{"id":7497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-26T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-26T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":939,"origin":{"id":7505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-26T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-26T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":940,"origin":{"id":7513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-26T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-26T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":941,"origin":{"id":7521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-26T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-26T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":942,"origin":{"id":7529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-26T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-26T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":943,"origin":{"id":7537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-26T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-27T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":944,"origin":{"id":7545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-27T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-27T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":945,"origin":{"id":7553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-27T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-27T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":946,"origin":{"id":7561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-27T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-27T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":947,"origin":{"id":7569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-27T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-27T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":948,"origin":{"id":7577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-27T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-27T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":949,"origin":{"id":7585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-27T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-27T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":950,"origin":{"id":7593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-27T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-27T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":951,"origin":{"id":7601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-27T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-28T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":952,"origin":{"id":7609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-28T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-28T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":953,"origin":{"id":7617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-28T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-28T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":954,"origin":{"id":7625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-28T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-28T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":955,"origin":{"id":7633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-28T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-28T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":956,"origin":{"id":7641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-28T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-28T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":957,"origin":{"id":7649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-28T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-28T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":958,"origin":{"id":7657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-28T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-28T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":959,"origin":{"id":7665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-28T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-29T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":960,"origin":{"id":7673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-29T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-29T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":961,"origin":{"id":7681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-29T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-29T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":962,"origin":{"id":7689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-29T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-29T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":963,"origin":{"id":7697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-29T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-29T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":964,"origin":{"id":7705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-29T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-29T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":965,"origin":{"id":7713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-29T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-29T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":966,"origin":{"id":7721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-29T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-29T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":967,"origin":{"id":7729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-29T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-30T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":968,"origin":{"id":7737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-30T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-30T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":969,"origin":{"id":7745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-30T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-30T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":970,"origin":{"id":7753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-30T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-30T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":971,"origin":{"id":7761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-30T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-30T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":972,"origin":{"id":7769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-30T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-30T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":973,"origin":{"id":7777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-30T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-30T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":974,"origin":{"id":7785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-30T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-09-30T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":975,"origin":{"id":7793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-09-30T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-01T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":976,"origin":{"id":7801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-01T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-01T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":977,"origin":{"id":7809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-01T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-01T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":978,"origin":{"id":7817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-01T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-01T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":979,"origin":{"id":7825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-01T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-01T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":980,"origin":{"id":7833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-01T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-01T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":981,"origin":{"id":7841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-01T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-01T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":982,"origin":{"id":7849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-01T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-01T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":983,"origin":{"id":7857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-01T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-02T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":984,"origin":{"id":7865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-02T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-02T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":985,"origin":{"id":7873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-02T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-02T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":986,"origin":{"id":7881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-02T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-02T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":987,"origin":{"id":7889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-02T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-02T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":988,"origin":{"id":7897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-02T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-02T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":989,"origin":{"id":7905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-02T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-02T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":990,"origin":{"id":7913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-02T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-02T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":991,"origin":{"id":7921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-02T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-03T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":992,"origin":{"id":7929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-03T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-03T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":993,"origin":{"id":7937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-03T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-03T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":994,"origin":{"id":7945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-03T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-03T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":995,"origin":{"id":7953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-03T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-03T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":996,"origin":{"id":7961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-03T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-03T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":997,"origin":{"id":7969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-03T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-03T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":998,"origin":{"id":7977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-03T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":7984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-03T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":999,"origin":{"id":7985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-03T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":7992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-04T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1000,"origin":{"id":7993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-04T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-04T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1001,"origin":{"id":8001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-04T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-04T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1002,"origin":{"id":8009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-04T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-04T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1003,"origin":{"id":8017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-04T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-04T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1004,"origin":{"id":8025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-04T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-04T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1005,"origin":{"id":8033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-04T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-04T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1006,"origin":{"id":8041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-04T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-04T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1007,"origin":{"id":8049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-04T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-05T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1008,"origin":{"id":8057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-05T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-05T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1009,"origin":{"id":8065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-05T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-05T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1010,"origin":{"id":8073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-05T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-05T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1011,"origin":{"id":8081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-05T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-05T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1012,"origin":{"id":8089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-05T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-05T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1013,"origin":{"id":8097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-05T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-05T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1014,"origin":{"id":8105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-05T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-05T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1015,"origin":{"id":8113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-05T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-06T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1016,"origin":{"id":8121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-06T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-06T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1017,"origin":{"id":8129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-06T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-06T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1018,"origin":{"id":8137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-06T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-06T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1019,"origin":{"id":8145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-06T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-06T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1020,"origin":{"id":8153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-06T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-06T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1021,"origin":{"id":8161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-06T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-06T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1022,"origin":{"id":8169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-06T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-06T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1023,"origin":{"id":8177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-06T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-07T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1024,"origin":{"id":8185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-07T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-07T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1025,"origin":{"id":8193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-07T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-07T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1026,"origin":{"id":8201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-07T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-07T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1027,"origin":{"id":8209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-07T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-07T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1028,"origin":{"id":8217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-07T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-07T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1029,"origin":{"id":8225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-07T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-07T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1030,"origin":{"id":8233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-07T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-07T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1031,"origin":{"id":8241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-07T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-08T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1032,"origin":{"id":8249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-08T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-08T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1033,"origin":{"id":8257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-08T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-08T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1034,"origin":{"id":8265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-08T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-08T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1035,"origin":{"id":8273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-08T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-08T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1036,"origin":{"id":8281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-08T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-08T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1037,"origin":{"id":8289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-08T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-08T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1038,"origin":{"id":8297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-08T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-08T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1039,"origin":{"id":8305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-08T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-09T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1040,"origin":{"id":8313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-09T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-09T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1041,"origin":{"id":8321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-09T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-09T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1042,"origin":{"id":8329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-09T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-09T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1043,"origin":{"id":8337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-09T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-09T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1044,"origin":{"id":8345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-09T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-09T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1045,"origin":{"id":8353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-09T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-09T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1046,"origin":{"id":8361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-09T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-09T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1047,"origin":{"id":8369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-09T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-10T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1048,"origin":{"id":8377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-10T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-10T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1049,"origin":{"id":8385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-10T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-10T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1050,"origin":{"id":8393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-10T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-10T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1051,"origin":{"id":8401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-10T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-10T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1052,"origin":{"id":8409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-10T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-10T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1053,"origin":{"id":8417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-10T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-10T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1054,"origin":{"id":8425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-10T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-10T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1055,"origin":{"id":8433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-10T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-11T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1056,"origin":{"id":8441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-11T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-11T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1057,"origin":{"id":8449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-11T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-11T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1058,"origin":{"id":8457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-11T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-11T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1059,"origin":{"id":8465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-11T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-11T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1060,"origin":{"id":8473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-11T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-11T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1061,"origin":{"id":8481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-11T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-11T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1062,"origin":{"id":8489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-11T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-11T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1063,"origin":{"id":8497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-11T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-12T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1064,"origin":{"id":8505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-12T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-12T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1065,"origin":{"id":8513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-12T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-12T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1066,"origin":{"id":8521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-12T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-12T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1067,"origin":{"id":8529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-12T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-12T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1068,"origin":{"id":8537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-12T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-12T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1069,"origin":{"id":8545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-12T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-12T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1070,"origin":{"id":8553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-12T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-12T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1071,"origin":{"id":8561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-12T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-13T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1072,"origin":{"id":8569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-13T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-13T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1073,"origin":{"id":8577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-13T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-13T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1074,"origin":{"id":8585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-13T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-13T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1075,"origin":{"id":8593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-13T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-13T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1076,"origin":{"id":8601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-13T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-13T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1077,"origin":{"id":8609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-13T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-13T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1078,"origin":{"id":8617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-13T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-13T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1079,"origin":{"id":8625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-13T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-14T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1080,"origin":{"id":8633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-14T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-14T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1081,"origin":{"id":8641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-14T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-14T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1082,"origin":{"id":8649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-14T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-14T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1083,"origin":{"id":8657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-14T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-14T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1084,"origin":{"id":8665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-14T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-14T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1085,"origin":{"id":8673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-14T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-14T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1086,"origin":{"id":8681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-14T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-14T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1087,"origin":{"id":8689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-14T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-15T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1088,"origin":{"id":8697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-15T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-15T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1089,"origin":{"id":8705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-15T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-15T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1090,"origin":{"id":8713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-15T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-15T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1091,"origin":{"id":8721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-15T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-15T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1092,"origin":{"id":8729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-15T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-15T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1093,"origin":{"id":8737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-15T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-15T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1094,"origin":{"id":8745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-15T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-15T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1095,"origin":{"id":8753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-15T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-16T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1096,"origin":{"id":8761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-16T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-16T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1097,"origin":{"id":8769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-16T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-16T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1098,"origin":{"id":8777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-16T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-16T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1099,"origin":{"id":8785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-16T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-16T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1100,"origin":{"id":8793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-16T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-16T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1101,"origin":{"id":8801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-16T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-16T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1102,"origin":{"id":8809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-16T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-16T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1103,"origin":{"id":8817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-16T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-17T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1104,"origin":{"id":8825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-17T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-17T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1105,"origin":{"id":8833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-17T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-17T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1106,"origin":{"id":8841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-17T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-17T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1107,"origin":{"id":8849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-17T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-17T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1108,"origin":{"id":8857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-17T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-17T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1109,"origin":{"id":8865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-17T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-17T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1110,"origin":{"id":8873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-17T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-17T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1111,"origin":{"id":8881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-17T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-18T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1112,"origin":{"id":8889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-18T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-18T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1113,"origin":{"id":8897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-18T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-18T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1114,"origin":{"id":8905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-18T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-18T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1115,"origin":{"id":8913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-18T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-18T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1116,"origin":{"id":8921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-18T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-18T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1117,"origin":{"id":8929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-18T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-18T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1118,"origin":{"id":8937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-18T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-18T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1119,"origin":{"id":8945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-18T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-19T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1120,"origin":{"id":8953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-19T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-19T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1121,"origin":{"id":8961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-19T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-19T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1122,"origin":{"id":8969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-19T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-19T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1123,"origin":{"id":8977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-19T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":8984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-19T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1124,"origin":{"id":8985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-19T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":8992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-19T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1125,"origin":{"id":8993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-19T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-19T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1126,"origin":{"id":9001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-19T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-19T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1127,"origin":{"id":9009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-19T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-20T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1128,"origin":{"id":9017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-20T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-20T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1129,"origin":{"id":9025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-20T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-20T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1130,"origin":{"id":9033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-20T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-20T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1131,"origin":{"id":9041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-20T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-20T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1132,"origin":{"id":9049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-20T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-20T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1133,"origin":{"id":9057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-20T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-20T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1134,"origin":{"id":9065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-20T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-20T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1135,"origin":{"id":9073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-20T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-21T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1136,"origin":{"id":9081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-21T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-21T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1137,"origin":{"id":9089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-21T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-21T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1138,"origin":{"id":9097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-21T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-21T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1139,"origin":{"id":9105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-21T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-21T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1140,"origin":{"id":9113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-21T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-21T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1141,"origin":{"id":9121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-21T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-21T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1142,"origin":{"id":9129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-21T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-21T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1143,"origin":{"id":9137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-21T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-22T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1144,"origin":{"id":9145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-22T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-22T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1145,"origin":{"id":9153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-22T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-22T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1146,"origin":{"id":9161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-22T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-22T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1147,"origin":{"id":9169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-22T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-22T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1148,"origin":{"id":9177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-22T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-22T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1149,"origin":{"id":9185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-22T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-22T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1150,"origin":{"id":9193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-22T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-22T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1151,"origin":{"id":9201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-22T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-23T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1152,"origin":{"id":9209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-23T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-23T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1153,"origin":{"id":9217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-23T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-23T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1154,"origin":{"id":9225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-23T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-23T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1155,"origin":{"id":9233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-23T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-23T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1156,"origin":{"id":9241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-23T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-23T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1157,"origin":{"id":9249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-23T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-23T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1158,"origin":{"id":9257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-23T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-23T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1159,"origin":{"id":9265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-23T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-24T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1160,"origin":{"id":9273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-24T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-24T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1161,"origin":{"id":9281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-24T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-24T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1162,"origin":{"id":9289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-24T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-24T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1163,"origin":{"id":9297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-24T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-24T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1164,"origin":{"id":9305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-24T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-24T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1165,"origin":{"id":9313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-24T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-24T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1166,"origin":{"id":9321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-24T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-24T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1167,"origin":{"id":9329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-24T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-25T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1168,"origin":{"id":9337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-25T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-25T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1169,"origin":{"id":9345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-25T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-25T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1170,"origin":{"id":9353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-25T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-25T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1171,"origin":{"id":9361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-25T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-25T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1172,"origin":{"id":9369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-25T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-25T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1173,"origin":{"id":9377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-25T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-25T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1174,"origin":{"id":9385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-25T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-25T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1175,"origin":{"id":9393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-25T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-26T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1176,"origin":{"id":9401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-26T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-26T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1177,"origin":{"id":9409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-26T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-26T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1178,"origin":{"id":9417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-26T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-26T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1179,"origin":{"id":9425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-26T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-26T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1180,"origin":{"id":9433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-26T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-26T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1181,"origin":{"id":9441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-26T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-26T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1182,"origin":{"id":9449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-26T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-26T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1183,"origin":{"id":9457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-26T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-27T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1184,"origin":{"id":9465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-27T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-27T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1185,"origin":{"id":9473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-27T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-27T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1186,"origin":{"id":9481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-27T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-27T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1187,"origin":{"id":9489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-27T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-27T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1188,"origin":{"id":9497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-27T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-27T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1189,"origin":{"id":9505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-27T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-27T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1190,"origin":{"id":9513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-27T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-27T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1191,"origin":{"id":9521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-27T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-28T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1192,"origin":{"id":9529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-28T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-28T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1193,"origin":{"id":9537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-28T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-28T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1194,"origin":{"id":9545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-28T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-28T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1195,"origin":{"id":9553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-28T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-28T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1196,"origin":{"id":9561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-28T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-28T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1197,"origin":{"id":9569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-28T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-28T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1198,"origin":{"id":9577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-28T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-28T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1199,"origin":{"id":9585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-28T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-29T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1200,"origin":{"id":9593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-29T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-29T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1201,"origin":{"id":9601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-29T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-29T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1202,"origin":{"id":9609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-29T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-29T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1203,"origin":{"id":9617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-29T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-29T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1204,"origin":{"id":9625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-29T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-29T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1205,"origin":{"id":9633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-29T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-29T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1206,"origin":{"id":9641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-29T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-29T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1207,"origin":{"id":9649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-29T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-30T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1208,"origin":{"id":9657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-30T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-30T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1209,"origin":{"id":9665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-30T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-30T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1210,"origin":{"id":9673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-30T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-30T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1211,"origin":{"id":9681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-30T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-30T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1212,"origin":{"id":9689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-30T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-30T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1213,"origin":{"id":9697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-30T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-30T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1214,"origin":{"id":9705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-30T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-30T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1215,"origin":{"id":9713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-30T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-31T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1216,"origin":{"id":9721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-31T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-31T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1217,"origin":{"id":9729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-31T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-31T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1218,"origin":{"id":9737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-31T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-31T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1219,"origin":{"id":9745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-31T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-31T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1220,"origin":{"id":9753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-31T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-31T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1221,"origin":{"id":9761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-31T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-31T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1222,"origin":{"id":9769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-31T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-10-31T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1223,"origin":{"id":9777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-10-31T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-01T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1224,"origin":{"id":9785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-01T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-01T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1225,"origin":{"id":9793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-01T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-01T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1226,"origin":{"id":9801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-01T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-01T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1227,"origin":{"id":9809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-01T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-01T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1228,"origin":{"id":9817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-01T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-01T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1229,"origin":{"id":9825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-01T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-01T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1230,"origin":{"id":9833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-01T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-01T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1231,"origin":{"id":9841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-01T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-02T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1232,"origin":{"id":9849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-02T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-02T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1233,"origin":{"id":9857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-02T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-02T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1234,"origin":{"id":9865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-02T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-02T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1235,"origin":{"id":9873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-02T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-02T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1236,"origin":{"id":9881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-02T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-02T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1237,"origin":{"id":9889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-02T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-02T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1238,"origin":{"id":9897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-02T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-02T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1239,"origin":{"id":9905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-02T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-03T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1240,"origin":{"id":9913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-03T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-03T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1241,"origin":{"id":9921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-03T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-03T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1242,"origin":{"id":9929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-03T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-03T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1243,"origin":{"id":9937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-03T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-03T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1244,"origin":{"id":9945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-03T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-03T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1245,"origin":{"id":9953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-03T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-03T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1246,"origin":{"id":9961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-03T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-03T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1247,"origin":{"id":9969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-03T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-04T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1248,"origin":{"id":9977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-04T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":9984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-04T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1249,"origin":{"id":9985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-04T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":9992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-04T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1250,"origin":{"id":9993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-04T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-04T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1251,"origin":{"id":10001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-04T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-04T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1252,"origin":{"id":10009,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-04T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10016,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-04T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1253,"origin":{"id":10017,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-04T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10024,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-04T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1254,"origin":{"id":10025,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-04T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10032,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-04T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1255,"origin":{"id":10033,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-04T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10040,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-05T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1256,"origin":{"id":10041,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-05T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10048,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-05T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1257,"origin":{"id":10049,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-05T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10056,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-05T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1258,"origin":{"id":10057,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-05T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10064,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-05T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1259,"origin":{"id":10065,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-05T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10072,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-05T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1260,"origin":{"id":10073,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-05T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10080,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-05T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1261,"origin":{"id":10081,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-05T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10088,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-05T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1262,"origin":{"id":10089,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-05T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10096,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-05T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1263,"origin":{"id":10097,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-05T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10104,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-06T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1264,"origin":{"id":10105,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-06T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10112,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-06T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1265,"origin":{"id":10113,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-06T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10120,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-06T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1266,"origin":{"id":10121,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-06T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10128,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-06T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1267,"origin":{"id":10129,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-06T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10136,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-06T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1268,"origin":{"id":10137,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-06T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10144,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-06T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1269,"origin":{"id":10145,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-06T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10152,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-06T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1270,"origin":{"id":10153,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-06T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10160,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-06T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1271,"origin":{"id":10161,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-06T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10168,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-07T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1272,"origin":{"id":10169,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-07T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10176,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-07T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1273,"origin":{"id":10177,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-07T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10184,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-07T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1274,"origin":{"id":10185,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-07T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10192,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-07T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1275,"origin":{"id":10193,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-07T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10200,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-07T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1276,"origin":{"id":10201,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-07T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10208,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-07T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1277,"origin":{"id":10209,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-07T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10216,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-07T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1278,"origin":{"id":10217,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-07T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10224,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-07T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1279,"origin":{"id":10225,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-07T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10232,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-08T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1280,"origin":{"id":10233,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-08T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10240,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-08T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1281,"origin":{"id":10241,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-08T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10248,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-08T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1282,"origin":{"id":10249,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-08T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10256,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-08T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1283,"origin":{"id":10257,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-08T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10264,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-08T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1284,"origin":{"id":10265,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-08T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10272,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-08T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1285,"origin":{"id":10273,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-08T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10280,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-08T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1286,"origin":{"id":10281,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-08T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10288,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-08T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1287,"origin":{"id":10289,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-08T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10296,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-09T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1288,"origin":{"id":10297,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-09T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10304,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-09T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1289,"origin":{"id":10305,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-09T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10312,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-09T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1290,"origin":{"id":10313,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-09T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10320,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-09T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1291,"origin":{"id":10321,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-09T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10328,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-09T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1292,"origin":{"id":10329,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-09T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10336,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-09T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1293,"origin":{"id":10337,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-09T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10344,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-09T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1294,"origin":{"id":10345,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-09T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10352,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-09T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1295,"origin":{"id":10353,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-09T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10360,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-10T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1296,"origin":{"id":10361,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-10T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10368,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-10T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1297,"origin":{"id":10369,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-10T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10376,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-10T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1298,"origin":{"id":10377,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-10T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10384,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-10T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1299,"origin":{"id":10385,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-10T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10392,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-10T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1300,"origin":{"id":10393,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-10T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10400,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-10T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1301,"origin":{"id":10401,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-10T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10408,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-10T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1302,"origin":{"id":10409,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-10T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10416,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-10T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1303,"origin":{"id":10417,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-10T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10424,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-11T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1304,"origin":{"id":10425,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-11T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10432,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-11T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1305,"origin":{"id":10433,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-11T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10440,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-11T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1306,"origin":{"id":10441,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-11T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10448,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-11T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1307,"origin":{"id":10449,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-11T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10456,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-11T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1308,"origin":{"id":10457,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-11T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10464,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-11T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1309,"origin":{"id":10465,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-11T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10472,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-11T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1310,"origin":{"id":10473,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-11T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10480,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-11T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1311,"origin":{"id":10481,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-11T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10488,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-12T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1312,"origin":{"id":10489,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-12T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10496,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-12T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1313,"origin":{"id":10497,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-12T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10504,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-12T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1314,"origin":{"id":10505,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-12T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10512,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-12T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1315,"origin":{"id":10513,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-12T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10520,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-12T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1316,"origin":{"id":10521,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-12T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10528,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-12T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1317,"origin":{"id":10529,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-12T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10536,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-12T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1318,"origin":{"id":10537,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-12T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10544,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-12T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1319,"origin":{"id":10545,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-12T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10552,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-13T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1320,"origin":{"id":10553,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-13T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10560,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-13T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1321,"origin":{"id":10561,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-13T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10568,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-13T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1322,"origin":{"id":10569,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-13T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10576,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-13T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1323,"origin":{"id":10577,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-13T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10584,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-13T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1324,"origin":{"id":10585,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-13T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10592,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-13T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1325,"origin":{"id":10593,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-13T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10600,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-13T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1326,"origin":{"id":10601,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-13T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10608,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-13T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1327,"origin":{"id":10609,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-13T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10616,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-14T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1328,"origin":{"id":10617,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-14T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10624,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-14T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1329,"origin":{"id":10625,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-14T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10632,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-14T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1330,"origin":{"id":10633,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-14T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10640,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-14T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1331,"origin":{"id":10641,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-14T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10648,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-14T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1332,"origin":{"id":10649,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-14T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10656,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-14T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1333,"origin":{"id":10657,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-14T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10664,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-14T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1334,"origin":{"id":10665,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-14T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10672,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-14T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1335,"origin":{"id":10673,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-14T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10680,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-15T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1336,"origin":{"id":10681,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-15T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10688,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-15T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1337,"origin":{"id":10689,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-15T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10696,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-15T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1338,"origin":{"id":10697,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-15T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10704,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-15T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1339,"origin":{"id":10705,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-15T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10712,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-15T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1340,"origin":{"id":10713,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-15T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10720,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-15T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1341,"origin":{"id":10721,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-15T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10728,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-15T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1342,"origin":{"id":10729,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-15T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10736,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-15T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1343,"origin":{"id":10737,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-15T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10744,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-16T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1344,"origin":{"id":10745,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-16T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10752,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-16T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1345,"origin":{"id":10753,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-16T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10760,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-16T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1346,"origin":{"id":10761,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-16T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10768,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-16T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1347,"origin":{"id":10769,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-16T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10776,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-16T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1348,"origin":{"id":10777,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-16T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10784,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-16T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1349,"origin":{"id":10785,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-16T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10792,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-16T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1350,"origin":{"id":10793,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-16T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10800,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-16T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1351,"origin":{"id":10801,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-16T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10808,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-17T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1352,"origin":{"id":10809,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-17T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10816,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-17T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1353,"origin":{"id":10817,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-17T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10824,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-17T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1354,"origin":{"id":10825,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-17T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10832,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-17T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1355,"origin":{"id":10833,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-17T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10840,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-17T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1356,"origin":{"id":10841,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-17T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10848,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-17T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1357,"origin":{"id":10849,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-17T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10856,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-17T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1358,"origin":{"id":10857,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-17T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10864,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-17T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1359,"origin":{"id":10865,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-17T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10872,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-18T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1360,"origin":{"id":10873,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-18T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10880,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-18T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1361,"origin":{"id":10881,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-18T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10888,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-18T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1362,"origin":{"id":10889,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-18T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10896,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-18T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1363,"origin":{"id":10897,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-18T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10904,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-18T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1364,"origin":{"id":10905,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-18T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10912,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-18T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1365,"origin":{"id":10913,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-18T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10920,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-18T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1366,"origin":{"id":10921,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-18T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10928,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-18T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1367,"origin":{"id":10929,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-18T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10936,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-19T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1368,"origin":{"id":10937,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-19T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10944,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-19T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1369,"origin":{"id":10945,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-19T06:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10952,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-19T08:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1370,"origin":{"id":10953,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-19T08:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10960,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-19T10:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1371,"origin":{"id":10961,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-19T12:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10968,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-19T13:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1372,"origin":{"id":10969,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-19T14:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10976,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-19T15:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1373,"origin":{"id":10977,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-19T17:30:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":10984,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-19T19:15:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}},{"id":1374,"origin":{"id":10985,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-19T19:30:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":10992,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-19T21:15:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1375,"origin":{"id":10993,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-19T23:00:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"destination":{"id":11000,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-20T00:45:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"vehicle":{"seat":14,"wheelchair":0,"bicycle":0,"id":1}},{"id":1376,"origin":{"id":11001,"allow_boarding":true,"allow_drop_off":false,"departure_time":"2020-11-20T01:00:00+00:00","location":{"id":5,"name":"Edinburgh","type":"STOP","description":"Melville Street"}},"destination":{"id":11008,"allow_boarding":false,"allow_drop_off":true,"arrival_time":"2020-11-20T02:45:00+00:00","location":{"id":1,"name":"Dundee","type":"STOP","description":"Greenmarket"}},"vehicle":{"seat":44,"wheelchair":2,"bicycle":4,"id":2}}]