jmjf

Results 26 comments of jmjf

I'm with OP in that I'd like to see Azure CLI docs with full detail. But I'm one of those crazy Linux people who's used to `man` pages that tell...

Edit docpad.coffee to land it in src/static. Edit src/render/styles/twitter-bootstrap.css.less to reference static instead of files. Not being a git guru, I'm still trying to figure out how to get the...

Okay. So the intent isn't to generate only the named schema but more about classes of objects. Does anyone have thoughts on the naming challenges? `oas2json` can use names `oas2tson`...

I'll work on making paths work with the following, unless some sees problems with this approach. Probably this weekend. - replace / and { and } in names with _...

The existing code for both `oas2json` and `oas2tson` replaces `/` in paths and other names from the spec with `-` to get a filename. That works for `oas2json` because `pets-{petId}`...

`pets/{petId}` could map to `pets__petId` or keep the trailing _ to reduce collision risk, but I acknowledge that doesn't solve the problem you raise. I'm open to ideas if someone...

I thought through this problem today to plan what I need to do with `oas2tson` to support `-p paths`. The naming challenges noted in previous comments make this problem complex....

@ilteoood; @simoneb As I finished that long comment outlining the problem, I had a crazy thought. What's your opinion on this? `oas2tson` should take the JSON from `oas2json` and build...

@ilteoood, @simoneb Why does `oas2json` strip the path information from `ref`s? `npm run oas2json -- -p paths` Look at `example/output/json/paths/pet.json` and note the `$ref`s to `Pet` are all `Pet.json` without...

Thank you. Another TIL -- why `oas2tson` duplicates code from other parts of the tool. Any day I can say, "TIL..." several times is a good day. :smile: I think...