How the environment variable is derived from the path:
- basename - anything after the last '/' is the variable name (e.g. with path /service, parameter /service/app/param becomes PARAM)
- relative - anything after the path is the variable name (e.g. with path /service, parameter /service/app/param becomes APP_PARAM)
- absolute - the full path with parameter name is the variable name (e.g. with path /service, parameter /service/app/param becomes SERVICE_APP_PARAM)