@@ -245,6 +245,7 @@ See the following table for a list of probable sources:
| `path` | leading part of request URL up to first `?` |
| `query.*` | query parameter extracted from part of request URL following first contained `?` - Replace `*` with name of parameter to read. |
| `params.*` | parameter extracted from pathname of request URL (in opposition to parameters found in its query) - Works after using convenient path test as described below, only. Replace `*` with name of parameter to read |
| `body.*` | parameter extracted from transmitted body - Works if body is encoded as JSON and header "content-type" is set. Replace `*` with name of parameter to read. |