Jacques Yakoub

Results 31 comments of Jacques Yakoub

I encountered the same $ref issue with my [specification](https://editor.swagger.io/?url=https://raw.githubusercontent.com/SourceCodeOER/sourcecode_api/master/api.yml) Other tools don't have this issue (for example [redoc](https://github.com/Redocly/redoc) and [openapi-generator](https://github.com/OpenAPITools/openapi-generator) ) : ![image](https://user-images.githubusercontent.com/9306961/71105204-6a0d1800-21bd-11ea-8124-e630037ecb7d.png)

thanks, seems to work like this : ```js presets.push.apply(presets, [['minify', { removeUndefined: false }]] ); ``` Just wonder why this thing is set by default to true if it causes...

@mickem Thanks. In one of my projects, this could be useful to have. Looking forward to see that in next version ;)

Tested today and same result as @mike86170 . In my case : - Install the game in English - Apply the [french ](http://traductionjeux.com/le%20parrain.html) patch to got translation - Apply a...

@Physox512 For your info, [keycloak-capacitor](https://github.com/jy95/keycloak-capacitor) should not have this issue : feel free to give a try :)

If it could help anyone, I started a viewer project called [docusaurus-json-schema-plugin](https://jy95.github.io/docusaurus-json-schema-plugin/) which supports **additionalProperties** . I had that need as well ... If needed, you can migrate your schema...

@josdejong If it could help, I saw this project https://github.com/acao/codemirror-json-schema . They might not have the ctrl-space trick users known from monaco-editor but it is better than nothing from what...

@josdejong I set up a [stackblitz](https://stackblitz.com/edit/github-vhecvd?file=src%2Flib%2Fcomponents%2Fmodes%2Ftextmode%2FTextMode.svelte) for POC that is uncomplete for the time being , mostly because I am not used to the prop drilling in Svelte codebase (`export...

@josdejong In the meantime, [codemirror-json-schema](https://github.com/acao/codemirror-json-schema) got one interesting [release](https://github.com/acao/codemirror-json-schema/releases/tag/v0.5.0) . What do you think ? ```ts extensions: [ json(), linter(jsonParseLinter()), linter(jsonSchemaLinter(), { needsRefresh: handleRefresh, }), jsonLanguage.data.of({ autocomplete: jsonCompletion(), }), hoverTooltip(jsonSchemaHover()),...

@Daniel15 I was using [json-estree-ast](https://www.npmjs.com/package/json-estree-ast), a litle wrapper around [json-to-ast](https://www.npmjs.com/package/json-to-ast) If I was able to deal with `.d.ts` files, why not the JSON files ? When using another parser wrapper...