David Smith

Results 14 comments of David Smith

Looks like the sun.arch.abi property is available in modern JVMs. http://mail.openjdk.java.net/pipermail/porters-dev/2013-January/000437.html on my Beaglebone Green, I see the following sun.arch.abi=gnueabihf

What's required to get this completed and integrated into the main branch?

Below a simplified version of my schema. ``` { "swagger": "2.0", "info": { "title": "My Cloud API", "version": "1.0" }, "consumes": ["application/json"], "produces": ["application/json"], "host": "localhost:3000", "basePath": "/api", "paths": {...

My package.json has "swagger-tools": "^0.8.7". I am using it with MEAN.js, and have the following in my express.js configuration file. I'm using the express router vs the swagger-tools one, but...

When I submit ``` { "type": "Command1", "propBase": "string" } ``` the output of the request to the log is ``` NODE_ENV is not defined! Using default development environment swagger-tools:middleware...

Awesome. I was just about to start putting together a skeleton app for you. Sorry for the delay. I was out grabbing some lunch. Let me know if you need...

Right, but the goal in reality is that I want to have Command1, Command2, Command3, etc. Is that not possible?

Cool. I'm pretty new to swagger, so I may be understanding it incorrectly. I'll wait to hear what the verdict is. Thanks for being so responsive.

That was my understanding. Think of it like a function in a language with strong typing like Java or C++. I can declare a function that receives a base class...

Wouldn't it be the reverse? If the specified schema had a `discriminator` you would need to look for any schemas that have an `allOf` that specifies a reference to the...