Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. // Collection
  2. {
  3. "locations": {
  4. // Documents
  5. {
  6. "locationNumber": 1234567,
  7. "locationAddress": "22 rue Eddy",
  8. "locationCity": "Gatineau",
  9. "locationRegion": "NCR",
  10. "locationRegionFr": "RNC",
  11. "postalCode": "A9A 9A9"
  12. "accomodations": true,
  13. "hours": "9:00AM-5:00PM",
  14. // Array of periods in which the office is closed ex. renovations, repairs, etc.
  15. "closures": [
  16. {
  17. "periodStart": "2019-05-21",
  18. "periodEnd": "2019-05-28"
  19. }
  20. ],
  21. "bioStations": [
  22. // Biometric Capture Stations
  23. {
  24. "stationID": "ABC12345",
  25. "timeSlots": [
  26. {
  27. "time": "9:00AM",
  28. // the available property allows a time slot to be completely removed from a biometric station or location
  29. "available": true,
  30. "appointments": null
  31. },
  32. {
  33. "time": "9:15AM",
  34. "available": true,
  35. // Array of appointment IDs or document IDs as references
  36. "appointments": [
  37. {
  38. clientEmail: jotaru@kujo.com,
  39. cic: "ab123456789",
  40. date: "2019-07-05",
  41. dateSubmitted: "2019-07-01",
  42. cancelled: false
  43. },
  44. {
  45. clientEmail: kakyoin@rip.com,
  46. cic: "bc23455667",
  47. date: "2019-09-21",
  48. dateSubmitted: "2019-09-08",
  49. cancelled: false
  50. },
  51. ]
  52. },
  53. ]
  54. }
  55. ]
  56. }
  57. }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement