-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add an option to allow to generate only models
- Loading branch information
1 parent
5df46e1
commit e5167ff
Showing
5 changed files
with
117 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"id": "https://example.com/primitives", | ||
"type": "object", | ||
"properties": { | ||
"myString": { | ||
"type": "string" | ||
}, | ||
"myNumber": { | ||
"type": "number" | ||
}, | ||
"myInteger": { | ||
"type": "integer" | ||
}, | ||
"myBoolean": { | ||
"type": "boolean" | ||
}, | ||
"myNull": { | ||
"type": "null" | ||
}, | ||
"myEnum": { | ||
"type": "string", | ||
"enum": [ | ||
"x", | ||
"y" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters