> ## Documentation Index
> Fetch the complete documentation index at: https://docs.solvice.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Request

This `VRP request` schema is used for solving a Vehicle Routing Problem. It consists of `resources`, `jobs`, `relations`, `options`
and `weights`.

| Name        | Type                      | Required | Description                                           |
| ----------- | ------------------------- | -------- | ----------------------------------------------------- |
| `resources` | \[[Resource](#resource)]  | true     | List of Resources                                     |
| `jobs`      | \[[Job](#job)]            | true     | List of Jobs                                          |
| `options`   | [Options](#options)       | false    | Options for solver configuration                      |
| `relations` | [JobRelation](#relations) | false    | Job relations                                         |
| `weights`   | [Weights](#weights)       | false    | Weighting the constraints                             |
| `hook`      | string(uri)               | false    | Webhook for getting notified after request is solved. |
