-
I have a route path that is `/servers/{id}/{note?}`, and it works fine within the route handler, I can call `request.params.id` and `request.params.note` just fine, but inside the Swagger UI, it's dis…
-
Hi, Does hapi-swagger support below schema
![screenshot from 2015-11-24 14 55 37](https://cloud.githubusercontent.com/assets/2370848/11362787/d46d5e8e-92bb-11e5-8221-1ba8851203e9.png)
If yes then I…
-
When I try to run my hapi application it terminates with above error. This started when I updated to node 4.22 (I tried node 5.0 as well but same problem so downgraded). It seem like vision added as d…
-
Not sure why, as I see you registering the dependency with `server.dependency`.....
``` javascript
/dev/project/node_modules/hapi/node_modules/hoek/lib/index.js:731
throw new Error(msgs.join(' ')…
-
There's a bug in the version of Swagger-UI this is using, where a route like:
```
{
method: 'GET',
path: '/test/{page}/route/{pagesize}',
config: {
description: 'Hapi-swagger bug test',
…
-
When I declare hapi response scheme as
```
schema: Joi.object().keys({
ans_list: Joi.array().items(
Joi.object().meta({ className: 'ans' }).keys({
v1: Joi.number(),
…
-
The request URL on http://openerz.herokuapp.com is not composed correctly, the format variable is never replaces (worked earlier this month).
Example:
http://openerz.herokuapp.com:80/api/calendar/car…
-
Trying with 11.1.2,
Here is my validation block ;
`validate: {
payload: Joi.object({
social_id: Joi.string().required().default("10208190795426016")
…
-
Hi today when i was working with hapi-swagger-3.0.0-rc3, I found something strange. `Joi.string().optional()` is not allowing me to leave field blank. I have attached screenshot and you can see from s…
-
Hi I don't know why but the browse button goes away using this
```
Joi.any()
.meta({ swaggerType: 'file' })
.optional()
.description('Image File')
```
If used `.required(…