description_parsing_cases.json 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. [
  2. {
  3. "year": 2024,
  4. "description": "1月1日(周三)放假1天,不调休",
  5. "expected": [{ "date": "2024-01-01", "isOffDay": true }]
  6. },
  7. {
  8. "year": 2019,
  9. "description": "2018年12月30日至2019年1月1日放假调休,共3天。2018年12月29日(星期六)上班。",
  10. "expected": [
  11. { "date": "2018-12-30", "isOffDay": true },
  12. { "date": "2018-12-31", "isOffDay": true },
  13. { "date": "2019-01-01", "isOffDay": true },
  14. { "date": "2018-12-29", "isOffDay": false }
  15. ]
  16. },
  17. {
  18. "year": 2019,
  19. "description": "2月4日至10日放假调休,共7天。2月2日(星期六)、2月3日(星期日)上班。",
  20. "expected": [
  21. { "date": "2019-02-04", "isOffDay": true },
  22. { "date": "2019-02-05", "isOffDay": true },
  23. { "date": "2019-02-06", "isOffDay": true },
  24. { "date": "2019-02-07", "isOffDay": true },
  25. { "date": "2019-02-08", "isOffDay": true },
  26. { "date": "2019-02-09", "isOffDay": true },
  27. { "date": "2019-02-10", "isOffDay": true },
  28. { "date": "2019-02-02", "isOffDay": false },
  29. { "date": "2019-02-03", "isOffDay": false }
  30. ]
  31. },
  32. {
  33. "year": 2019,
  34. "description": "4月5日放假,与周末连休。",
  35. "expected": [{ "date": "2019-04-05", "isOffDay": true }]
  36. },
  37. {
  38. "year": 2019,
  39. "description": "5月1日放假。",
  40. "expected": [{ "date": "2019-05-01", "isOffDay": true }]
  41. },
  42. {
  43. "year": 2019,
  44. "description": "6月7日放假,与周末连休。",
  45. "expected": [{ "date": "2019-06-07", "isOffDay": true }]
  46. },
  47. {
  48. "year": 2019,
  49. "description": "9月13日放假,与周末连休。",
  50. "expected": [{ "date": "2019-09-13", "isOffDay": true }]
  51. },
  52. {
  53. "year": 2019,
  54. "description": "10月1日至7日放假调休,共7天。9月29日(星期日)、10月12日(星期六)上班。",
  55. "expected": [
  56. { "date": "2019-10-01", "isOffDay": true },
  57. { "date": "2019-10-02", "isOffDay": true },
  58. { "date": "2019-10-03", "isOffDay": true },
  59. { "date": "2019-10-04", "isOffDay": true },
  60. { "date": "2019-10-05", "isOffDay": true },
  61. { "date": "2019-10-06", "isOffDay": true },
  62. { "date": "2019-10-07", "isOffDay": true },
  63. { "date": "2019-09-29", "isOffDay": false },
  64. { "date": "2019-10-12", "isOffDay": false }
  65. ]
  66. },
  67. {
  68. "year": 2018,
  69. "description": "1月1日放假,与周末连休。",
  70. "expected": [{ "date": "2018-01-01", "isOffDay": true }]
  71. },
  72. {
  73. "year": 2018,
  74. "description": "2月15日至21日放假调休,共7天。2月11日(星期日)、2月24日(星期六)上班。",
  75. "expected": [
  76. { "date": "2018-02-15", "isOffDay": true },
  77. { "date": "2018-02-16", "isOffDay": true },
  78. { "date": "2018-02-17", "isOffDay": true },
  79. { "date": "2018-02-18", "isOffDay": true },
  80. { "date": "2018-02-19", "isOffDay": true },
  81. { "date": "2018-02-20", "isOffDay": true },
  82. { "date": "2018-02-21", "isOffDay": true },
  83. { "date": "2018-02-11", "isOffDay": false },
  84. { "date": "2018-02-24", "isOffDay": false }
  85. ]
  86. },
  87. {
  88. "year": 2018,
  89. "description": "4月5日至7日放假调休,共3天。4月8日(星期日)上班。",
  90. "expected": [
  91. { "date": "2018-04-05", "isOffDay": true },
  92. { "date": "2018-04-06", "isOffDay": true },
  93. { "date": "2018-04-07", "isOffDay": true },
  94. { "date": "2018-04-08", "isOffDay": false }
  95. ]
  96. },
  97. {
  98. "year": 2018,
  99. "description": "4月29日至5月1日放假调休,共3天。4月28日(星期六)上班。",
  100. "expected": [
  101. { "date": "2018-04-29", "isOffDay": true },
  102. { "date": "2018-04-30", "isOffDay": true },
  103. { "date": "2018-05-01", "isOffDay": true },
  104. { "date": "2018-04-28", "isOffDay": false }
  105. ]
  106. },
  107. {
  108. "year": 2018,
  109. "description": "6月18日放假,与周末连休。",
  110. "expected": [{ "date": "2018-06-18", "isOffDay": true }]
  111. },
  112. {
  113. "year": 2018,
  114. "description": "9月24日放假,与周末连休。",
  115. "expected": [{ "date": "2018-09-24", "isOffDay": true }]
  116. },
  117. {
  118. "year": 2018,
  119. "description": "10月1日至7日放假调休,共7天。9月29日(星期六)、9月30日(星期日)上班。",
  120. "expected": [
  121. { "date": "2018-10-01", "isOffDay": true },
  122. { "date": "2018-10-02", "isOffDay": true },
  123. { "date": "2018-10-03", "isOffDay": true },
  124. { "date": "2018-10-04", "isOffDay": true },
  125. { "date": "2018-10-05", "isOffDay": true },
  126. { "date": "2018-10-06", "isOffDay": true },
  127. { "date": "2018-10-07", "isOffDay": true },
  128. { "date": "2018-09-29", "isOffDay": false },
  129. { "date": "2018-09-30", "isOffDay": false }
  130. ]
  131. },
  132. {
  133. "year": 2016,
  134. "description": "1月1日放假,与周末连休。",
  135. "expected": [{ "date": "2016-01-01", "isOffDay": true }]
  136. },
  137. {
  138. "year": 2016,
  139. "description": "2月7日至13日放假调休,共7天。2月6日(星期六)、2月14日(星期日)上班。",
  140. "expected": [
  141. { "date": "2016-02-07", "isOffDay": true },
  142. { "date": "2016-02-08", "isOffDay": true },
  143. { "date": "2016-02-09", "isOffDay": true },
  144. { "date": "2016-02-10", "isOffDay": true },
  145. { "date": "2016-02-11", "isOffDay": true },
  146. { "date": "2016-02-12", "isOffDay": true },
  147. { "date": "2016-02-13", "isOffDay": true },
  148. { "date": "2016-02-06", "isOffDay": false },
  149. { "date": "2016-02-14", "isOffDay": false }
  150. ]
  151. },
  152. {
  153. "year": 2016,
  154. "description": "4月4日放假,与周末连休。",
  155. "expected": [{ "date": "2016-04-04", "isOffDay": true }]
  156. },
  157. {
  158. "year": 2016,
  159. "description": "5月1日放假,5月2日(星期一)补休。",
  160. "expected": [
  161. { "date": "2016-05-01", "isOffDay": true },
  162. { "date": "2016-05-02", "isOffDay": true }
  163. ]
  164. },
  165. {
  166. "year": 2016,
  167. "description": "6月9日至11日放假调休,共3天。6月12日(星期日)上班。",
  168. "expected": [
  169. { "date": "2016-06-09", "isOffDay": true },
  170. { "date": "2016-06-10", "isOffDay": true },
  171. { "date": "2016-06-11", "isOffDay": true },
  172. { "date": "2016-06-12", "isOffDay": false }
  173. ]
  174. },
  175. {
  176. "year": 2016,
  177. "description": "9月15日至17日放假调休,共3天。9月18日(星期日)上班。",
  178. "expected": [
  179. { "date": "2016-09-15", "isOffDay": true },
  180. { "date": "2016-09-16", "isOffDay": true },
  181. { "date": "2016-09-17", "isOffDay": true },
  182. { "date": "2016-09-18", "isOffDay": false }
  183. ]
  184. },
  185. {
  186. "year": 2016,
  187. "description": "10月1日至7日放假调休,共7天。10月8日(星期六)、10月9日(星期日)上班。",
  188. "expected": [
  189. { "date": "2016-10-01", "isOffDay": true },
  190. { "date": "2016-10-02", "isOffDay": true },
  191. { "date": "2016-10-03", "isOffDay": true },
  192. { "date": "2016-10-04", "isOffDay": true },
  193. { "date": "2016-10-05", "isOffDay": true },
  194. { "date": "2016-10-06", "isOffDay": true },
  195. { "date": "2016-10-07", "isOffDay": true },
  196. { "date": "2016-10-08", "isOffDay": false },
  197. { "date": "2016-10-09", "isOffDay": false }
  198. ]
  199. },
  200. {
  201. "year": 2016,
  202. "description": "5月1日放假,5月2日(星期一)补休。",
  203. "expected": [
  204. { "date": "2016-05-01", "isOffDay": true },
  205. { "date": "2016-05-02", "isOffDay": true }
  206. ]
  207. },
  208. {
  209. "year": 2014,
  210. "description": "1月1日放假1天。",
  211. "expected": [{ "date": "2014-01-01", "isOffDay": true }]
  212. },
  213. {
  214. "year": 2014,
  215. "description": "1月31日至2月6日放假调休,共7天。1月26日(星期日)、2月8日(星期六)上班。",
  216. "expected": [
  217. { "date": "2014-01-31", "isOffDay": true },
  218. { "date": "2014-02-01", "isOffDay": true },
  219. { "date": "2014-02-02", "isOffDay": true },
  220. { "date": "2014-02-03", "isOffDay": true },
  221. { "date": "2014-02-04", "isOffDay": true },
  222. { "date": "2014-02-05", "isOffDay": true },
  223. { "date": "2014-02-06", "isOffDay": true },
  224. { "date": "2014-01-26", "isOffDay": false },
  225. { "date": "2014-02-08", "isOffDay": false }
  226. ]
  227. },
  228. {
  229. "year": 2014,
  230. "description": "4月5日放假,4月7日(星期一)补休。",
  231. "expected": [
  232. { "date": "2014-04-05", "isOffDay": true },
  233. { "date": "2014-04-07", "isOffDay": true }
  234. ]
  235. },
  236. {
  237. "year": 2014,
  238. "description": "5月1日至3日放假调休,共3天。5月4日(星期日)上班。",
  239. "expected": [
  240. { "date": "2014-05-01", "isOffDay": true },
  241. { "date": "2014-05-02", "isOffDay": true },
  242. { "date": "2014-05-03", "isOffDay": true },
  243. { "date": "2014-05-04", "isOffDay": false }
  244. ]
  245. },
  246. {
  247. "year": 2014,
  248. "description": "6月2日放假,与周末连休。",
  249. "expected": [{ "date": "2014-06-02", "isOffDay": true }]
  250. },
  251. {
  252. "year": 2014,
  253. "description": "9月8日放假,与周末连休。",
  254. "expected": [{ "date": "2014-09-08", "isOffDay": true }]
  255. },
  256. {
  257. "year": 2014,
  258. "description": "10月1日至7日放假调休,共7天。9月28日(星期日)、10月11日(星期六)上班。",
  259. "expected": [
  260. { "date": "2014-10-01", "isOffDay": true },
  261. { "date": "2014-10-02", "isOffDay": true },
  262. { "date": "2014-10-03", "isOffDay": true },
  263. { "date": "2014-10-04", "isOffDay": true },
  264. { "date": "2014-10-05", "isOffDay": true },
  265. { "date": "2014-10-06", "isOffDay": true },
  266. { "date": "2014-10-07", "isOffDay": true },
  267. { "date": "2014-09-28", "isOffDay": false },
  268. { "date": "2014-10-11", "isOffDay": false }
  269. ]
  270. },
  271. {
  272. "year": 2013,
  273. "description": "1月1日至3日放假调休,共3天。1月5日(星期六)、1月6日(星期日)上班。",
  274. "expected": [
  275. { "date": "2013-01-01", "isOffDay": true },
  276. { "date": "2013-01-02", "isOffDay": true },
  277. { "date": "2013-01-03", "isOffDay": true },
  278. { "date": "2013-01-05", "isOffDay": false },
  279. { "date": "2013-01-06", "isOffDay": false }
  280. ]
  281. },
  282. {
  283. "year": 2013,
  284. "description": "2月9日至15日放假调休,共7天。2月16日(星期六)、2月17日(星期日)上班。",
  285. "expected": [
  286. { "date": "2013-02-09", "isOffDay": true },
  287. { "date": "2013-02-10", "isOffDay": true },
  288. { "date": "2013-02-11", "isOffDay": true },
  289. { "date": "2013-02-12", "isOffDay": true },
  290. { "date": "2013-02-13", "isOffDay": true },
  291. { "date": "2013-02-14", "isOffDay": true },
  292. { "date": "2013-02-15", "isOffDay": true },
  293. { "date": "2013-02-16", "isOffDay": false },
  294. { "date": "2013-02-17", "isOffDay": false }
  295. ]
  296. },
  297. {
  298. "year": 2013,
  299. "description": "4月4日至6日放假调休,共3天。4月7日(星期日)上班。",
  300. "expected": [
  301. { "date": "2013-04-04", "isOffDay": true },
  302. { "date": "2013-04-05", "isOffDay": true },
  303. { "date": "2013-04-06", "isOffDay": true },
  304. { "date": "2013-04-07", "isOffDay": false }
  305. ]
  306. },
  307. {
  308. "year": 2013,
  309. "description": "4月29日至5月1日放假调休,共3天。4月27日(星期六)、4月28日(星期日)上班。",
  310. "expected": [
  311. { "date": "2013-04-29", "isOffDay": true },
  312. { "date": "2013-04-30", "isOffDay": true },
  313. { "date": "2013-05-01", "isOffDay": true },
  314. { "date": "2013-04-27", "isOffDay": false },
  315. { "date": "2013-04-28", "isOffDay": false }
  316. ]
  317. },
  318. {
  319. "year": 2013,
  320. "description": "6月10日至12日放假调休,共3天。6月8日(星期六)、6月9日(星期日)上班。",
  321. "expected": [
  322. { "date": "2013-06-10", "isOffDay": true },
  323. { "date": "2013-06-11", "isOffDay": true },
  324. { "date": "2013-06-12", "isOffDay": true },
  325. { "date": "2013-06-08", "isOffDay": false },
  326. { "date": "2013-06-09", "isOffDay": false }
  327. ]
  328. },
  329. {
  330. "year": 2013,
  331. "description": "9月19日至21日放假调休,共3天。9月22日(星期日)上班。",
  332. "expected": [
  333. { "date": "2013-09-19", "isOffDay": true },
  334. { "date": "2013-09-20", "isOffDay": true },
  335. { "date": "2013-09-21", "isOffDay": true },
  336. { "date": "2013-09-22", "isOffDay": false }
  337. ]
  338. },
  339. {
  340. "year": 2013,
  341. "description": "10月1日至7日放假调休,共7天。9月29日(星期日)、10月12日(星期六)上班。",
  342. "expected": [
  343. { "date": "2013-10-01", "isOffDay": true },
  344. { "date": "2013-10-02", "isOffDay": true },
  345. { "date": "2013-10-03", "isOffDay": true },
  346. { "date": "2013-10-04", "isOffDay": true },
  347. { "date": "2013-10-05", "isOffDay": true },
  348. { "date": "2013-10-06", "isOffDay": true },
  349. { "date": "2013-10-07", "isOffDay": true },
  350. { "date": "2013-09-29", "isOffDay": false },
  351. { "date": "2013-10-12", "isOffDay": false }
  352. ]
  353. },
  354. {
  355. "year": 2011,
  356. "description": "2月2日(农历除夕)至8日放假调休,共7天。1月30日(星期日)、2月12日(星期六)上班。",
  357. "expected": [
  358. { "date": "2011-02-02", "isOffDay": true },
  359. { "date": "2011-02-03", "isOffDay": true },
  360. { "date": "2011-02-04", "isOffDay": true },
  361. { "date": "2011-02-05", "isOffDay": true },
  362. { "date": "2011-02-06", "isOffDay": true },
  363. { "date": "2011-02-07", "isOffDay": true },
  364. { "date": "2011-02-08", "isOffDay": true },
  365. { "date": "2011-01-30", "isOffDay": false },
  366. { "date": "2011-02-12", "isOffDay": false }
  367. ]
  368. },
  369. {
  370. "year": 2008,
  371. "description": "2007年12月30日—2008年1月1日放假,共3天。其中,1月1日(星期二)为法定节假日,12月30日(星期日)为公休日,12月29日(星期六)公休日调至12月31日(星期一),12月29日(星期六)上班。",
  372. "expected": [
  373. { "date": "2007-12-30", "isOffDay": true },
  374. { "date": "2007-12-31", "isOffDay": true },
  375. { "date": "2008-01-01", "isOffDay": true },
  376. { "date": "2007-12-29", "isOffDay": false }
  377. ]
  378. },
  379. {
  380. "year": 2008,
  381. "description": "2月6日—12日(农历除夕至正月初六)放假,共7天。其中,2月6日(除夕)、2月7日(春节)、2月8日(正月初二)为法定节假日,2月9日(星期六)、2月10日(星期日)照常公休,2月2日(星期六)、2月3日(星期日)两个公休日调至2月11日(星期一)、2月12日(星期二),2月2日(星期六)、2月3日(星期日)上班。",
  382. "expected": [
  383. { "date": "2008-02-06", "isOffDay": true },
  384. { "date": "2008-02-07", "isOffDay": true },
  385. { "date": "2008-02-08", "isOffDay": true },
  386. { "date": "2008-02-09", "isOffDay": true },
  387. { "date": "2008-02-10", "isOffDay": true },
  388. { "date": "2008-02-11", "isOffDay": true },
  389. { "date": "2008-02-12", "isOffDay": true },
  390. { "date": "2008-02-02", "isOffDay": false },
  391. { "date": "2008-02-03", "isOffDay": false }
  392. ]
  393. },
  394. {
  395. "year": 2008,
  396. "description": "4月4日—6日放假,共3天。其中,4月4日(清明节)为法定节假日,4月5日(星期六)、4月6日(星期日)照常公休。",
  397. "expected": [
  398. { "date": "2008-04-04", "isOffDay": true },
  399. { "date": "2008-04-05", "isOffDay": true },
  400. { "date": "2008-04-06", "isOffDay": true }
  401. ]
  402. },
  403. {
  404. "year": 2008,
  405. "description": "5月1日—3日放假,共3天。其中,5月1日为法定节假日,5月3日(星期六)为公休日,5月4日(星期日)公休日调至5月2日(星期五),5月4日(星期日)上班。",
  406. "expected": [
  407. { "date": "2008-05-01", "isOffDay": true },
  408. { "date": "2008-05-02", "isOffDay": true },
  409. { "date": "2008-05-03", "isOffDay": true },
  410. { "date": "2008-05-04", "isOffDay": false }
  411. ]
  412. },
  413. {
  414. "year": 2008,
  415. "description": "6月7日—9日放假,共3天。其中,6月7日(星期六)照常公休,6月8日(农历五月初五,端午节)为法定节假日,6月8日(星期日)公休日调至6月9日(星期一)。",
  416. "expected": [
  417. { "date": "2008-06-07", "isOffDay": true },
  418. { "date": "2008-06-08", "isOffDay": true },
  419. { "date": "2008-06-09", "isOffDay": true }
  420. ]
  421. },
  422. {
  423. "year": 2008,
  424. "description": "9月13日—15日放假,共3天。其中,9月13日(星期六)为公休日,9月14日(农历八月十五,中秋节)为法定节假日,9月14日(星期日)公休日调至9月15日(星期一)。",
  425. "expected": [
  426. { "date": "2008-09-13", "isOffDay": true },
  427. { "date": "2008-09-14", "isOffDay": true },
  428. { "date": "2008-09-15", "isOffDay": true }
  429. ]
  430. },
  431. {
  432. "year": 2008,
  433. "description": "9月29日—10月5日放假,共7天。其中,10月1日、2日、3日为法定节假日,9月27日(星期六)、9月28日(星期日)两个公休日调至9月29日(星期一)、30日(星期二),10月4日(星期六)、5日(星期日)照常公休。",
  434. "expected": [
  435. { "date": "2008-09-29", "isOffDay": true },
  436. { "date": "2008-09-30", "isOffDay": true },
  437. { "date": "2008-10-01", "isOffDay": true },
  438. { "date": "2008-10-02", "isOffDay": true },
  439. { "date": "2008-10-03", "isOffDay": true },
  440. { "date": "2008-10-04", "isOffDay": true },
  441. { "date": "2008-10-05", "isOffDay": true },
  442. { "date": "2008-09-27", "isOffDay": false },
  443. { "date": "2008-09-28", "isOffDay": false }
  444. ]
  445. },
  446. {
  447. "year": 2007,
  448. "description": "1月1日—3日放假,共3天。其中1月1日为法定假日,将2006年12月30日(星期六)、31日(星期日)两个公休日分别调至2007年1月2日、3日,2006年12月30日(星期六)、31日(星期日)上班。",
  449. "expected": [
  450. { "date": "2007-01-01", "isOffDay": true },
  451. { "date": "2007-01-02", "isOffDay": true },
  452. { "date": "2007-01-03", "isOffDay": true },
  453. { "date": "2006-12-30", "isOffDay": false },
  454. { "date": "2006-12-31", "isOffDay": false }
  455. ]
  456. },
  457. {
  458. "year": 2007,
  459. "description": "2月18日—24日(即农历大年初一至初七)放假,共7天。其中18日、19日、20日为法定假日,将17日(星期六)、18日(星期日)、25日(星期日)三个公休日分别调至21日(星期三)、22日(星期四)、23日(星期五);24日(星期六)照常公休,17日、25日上班。",
  460. "expected": [
  461. { "date": "2007-02-18", "isOffDay": true },
  462. { "date": "2007-02-19", "isOffDay": true },
  463. { "date": "2007-02-20", "isOffDay": true },
  464. { "date": "2007-02-21", "isOffDay": true },
  465. { "date": "2007-02-22", "isOffDay": true },
  466. { "date": "2007-02-23", "isOffDay": true },
  467. { "date": "2007-02-24", "isOffDay": true },
  468. { "date": "2007-02-17", "isOffDay": false },
  469. { "date": "2007-02-25", "isOffDay": false }
  470. ]
  471. },
  472. {
  473. "year": 2007,
  474. "description": "5月1日—7日放假,共7天。其中,1日、2日、3日为法定假日,将4月28日(星期六)、29日(星期日)两个公休日调至5月4日(星期五)、7日(星期一);5月5日(星期六)、6日(星期日)照常公休,4月28日、29日上班。",
  475. "expected": [
  476. { "date": "2007-05-01", "isOffDay": true },
  477. { "date": "2007-05-02", "isOffDay": true },
  478. { "date": "2007-05-03", "isOffDay": true },
  479. { "date": "2007-05-04", "isOffDay": true },
  480. { "date": "2007-05-05", "isOffDay": true },
  481. { "date": "2007-05-06", "isOffDay": true },
  482. { "date": "2007-05-07", "isOffDay": true },
  483. { "date": "2007-04-28", "isOffDay": false },
  484. { "date": "2007-04-29", "isOffDay": false }
  485. ]
  486. },
  487. {
  488. "year": 2007,
  489. "description": "10月1日—7日放假,共7天。其中,1日、2日、3日为法定假日,将9月29日(星期六)、30日(星期日)两个公休日调至10月4日(星期四)、5日(星期五);10月6日(星期六)、7日(星期日)照常公休,9月29日、30日上班。",
  490. "expected": [
  491. { "date": "2007-10-01", "isOffDay": true },
  492. { "date": "2007-10-02", "isOffDay": true },
  493. { "date": "2007-10-03", "isOffDay": true },
  494. { "date": "2007-10-04", "isOffDay": true },
  495. { "date": "2007-10-05", "isOffDay": true },
  496. { "date": "2007-10-06", "isOffDay": true },
  497. { "date": "2007-10-07", "isOffDay": true },
  498. { "date": "2007-09-29", "isOffDay": false },
  499. { "date": "2007-09-30", "isOffDay": false }
  500. ]
  501. }
  502. ]