Skip to content

Commit

Permalink
Some schema fixes (#1033)
Browse files Browse the repository at this point in the history
These don't matter to the type checker, so wasn't caught before.

Signed-off-by: Anders Eknert <[email protected]>
  • Loading branch information
anderseknert authored Sep 2, 2024
1 parent 1a58b8c commit a525c98
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions internal/embeds/schemas/regal-ast.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@
"additionalProperties": false,
"type": "object",
"required": [
"head",
"body"
"head"
]
},
"else": {
Expand All @@ -165,8 +164,7 @@
"additionalProperties": false,
"type": "object",
"required": [
"head",
"body"
"head"
]
},
"args": {
Expand Down Expand Up @@ -209,8 +207,8 @@
"additionalProperties": false,
"type": "object",
"required": [
"Text",
"Location"
"text",
"location"
]
},
"expr": {
Expand All @@ -222,9 +220,6 @@
"type": "array"
},
"terms": true,
"index": {
"type": "integer"
},
"generated": {
"type": "boolean"
},
Expand All @@ -238,8 +233,7 @@
"additionalProperties": false,
"type": "object",
"required": [
"terms",
"index"
"terms"
]
},
"head": {
Expand Down

0 comments on commit a525c98

Please sign in to comment.