json-schema-codegen icon indicating copy to clipboard operation
json-schema-codegen copied to clipboard

Generate code from JSON schema files

Results 10 json-schema-codegen issues
Sort by recently updated
recently updated
newest added

Update versions of pre-commit hooks to latest version.

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.24.0 to 7.24.3. Release notes Sourced from @​babel/core's releases. v7.24.3 (2024-03-20) :bug: Bug Fix babel-helper-module-imports #16370 fix: do not inject the same imported identifier multiple times (@​ota-meshi)...

dependencies
javascript

Bumps [@babel/generator](https://github.com/babel/babel/tree/HEAD/packages/babel-generator) from 7.23.6 to 7.24.1. Release notes Sourced from @​babel/generator's releases. v7.24.1 (2024-03-19) :bug: Bug Fix babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators #16350 Fix decorated class computed keys ordering (@​JLHwung) #16344 Fix decorated...

dependencies
javascript

Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) from 7.33.2 to 7.34.1. Release notes Sourced from eslint-plugin-react's releases. v7.34.1 Fixed [jsx-no-leaked-render]: prevent wrongly adding parens (#3700[] @​developer-bandi) [boolean-prop-naming]: detect TS interfaces (#3701[] @​developer-bandi) [boolean-prop-naming]: literalType error...

dependencies
javascript

Bumps [@babel/preset-flow](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-flow) from 7.24.0 to 7.24.1. Release notes Sourced from @​babel/preset-flow's releases. v7.24.1 (2024-03-19) :bug: Bug Fix babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators #16350 Fix decorated class computed keys ordering (@​JLHwung) #16344 Fix decorated...

dependencies
javascript

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.24.0 to 7.24.3. Release notes Sourced from @​babel/preset-env's releases. v7.24.3 (2024-03-20) :bug: Bug Fix babel-helper-module-imports #16370 fix: do not inject the same imported identifier multiple times (@​ota-meshi)...

dependencies
javascript

schema.json ```json { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/nerevu/rorschach/master/app/schemas/provider.schema.json", "title": "Provider", "description": "A 3rd party API provider", "type": "object", "additionalProperties": false, "properties": { "authentication": { "description": "Authentication methods exposed by the API",...

``` { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Table", "definitions": { "dataSource": { "properties": { "type": { "type": "string", "enum": [ "postgres", "script" ], "default": "postgres" } }, "type": "object" } }, "properties":...

```json { "$schema": "http://json-schema.org/draft-07/schema#", "title": "one_of_fail", "properties": { "hosts": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] } } } ```...

``` "params": { "type": "object", "$ref": "#/definitions/DBConnection" },``` translates to: ```self.params: Optional[Dict] = data.get('params')``` The only way to make it an object is to have it like this: ``` "params":...

bug