Skip to content

Commit

Permalink
fix(misc): make generated schemas compliant with json schema spec (#6548
Browse files Browse the repository at this point in the history
)
  • Loading branch information
leosvelperez committed Jul 30, 2021
1 parent 89c70f2 commit ddfbac5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"id": "<%= className %>",
"$id": "<%= className %>",
"title": "",
"type": "object",
"properties": {
Expand Down
@@ -1,6 +1,7 @@
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"id": "<%= name %>",
"$id": "<%= name %>",
"type": "object",
"properties": {
"name": {
Expand Down

0 comments on commit ddfbac5

Please sign in to comment.