Books
Files
| File | Type | Description |
|---|---|---|
books/book.csv |
main |
Each book, or "calendar" that the business will import. These will usually map 1 to 1 with the employees. |
Fields
books/book.csv
| Field | Required | Type | Description |
|---|---|---|---|
| id | required |
string |
The id of the book. |
| name | required |
string |
The name of the book. This will usually match the name of the employee it is linked to. |
| book_status | required |
book-status |
Indicates if the book is active or archived. |
| available_hours | required |
valid-hours |
JSON encoded string value that indicates the hours available for each individual day of the week. |
| employees[].id | required |
relation:"employees.id" |
JSON encoded string that indicates the ID of the employees that this book is linked to. Only these employees can be scheduled on this book |
Required Rows
| name | book_status | available_hours | employees |
|---|---|---|---|
| Teaching Time | active | {"monday":[{"start":{"time":"00:00"},"end":{"time":"23:59"}}],"tuesday":[{"start":{"time":"00:00"},"end":{"time":"23:59"}}],"wednesday":[{"start":{"time":"00:00"},"end":{"time":"23:59"}}],"thursday":[{"start":{"time":"00:00"},"end":{"time":"23:59"}}],"friday":[{"start":{"time":"00:00"},"end":{"time":"23:59"}}],"saturday":[{"start":{"time":"00:00"},"end":{"time":"23:59"}}],"sunday":[{"start":{"time":"00:00"},"end":{"time":"23:59"}}]} |