# Glossary & Naming Conventions

### Glossary

* **Order** – a delivery request created by a customer.
* **Job** – a specific assignment for a driver (usually 1:1 with order).
* **Pickup** – location where the driver collects the items.
* **Drop-off** – location where the driver delivers the items.
* **ETA** – estimated time of arrival.
* **Dispatch** – process of assigning an order to a driver.

(Extend this list with your own terms.)

### Naming conventions

* API endpoints: `snake_case` in JSON fields, consistent version prefix.
* Database tables: plural names (e.g., `orders`, `drivers`).
* Services: use clear names (`order-service`, `pricing-service`, etc.).
* Repositories and folders: use lowercase with hyphens where possible.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://beeplus.gitbook.io/beeplus-docs/glossary-and-naming-conventions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
