Skip to content

Commit

Permalink
fix: v2 schema incorrect error property (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
devpow112 authored Apr 30, 2024
1 parent a5b95e9 commit d457ab2
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion schemas/report/v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,26 @@
"minimum": 0
},
"error": {
"$ref": "#/$defs/nonEmptyUnpaddedString"
"type": "object",
"properties": {
"message": {
"$ref": "#/$defs/nonEmptyUnpaddedString"
},
"file": {
"$ref": "#/$defs/nonEmptyUnpaddedString"
},
"line": {
"type": "integer",
"minimum": 0
},
"column": {
"type": "integer",
"minimum": 0
}
},
"required": [
"message"
]
}
},
"required": [
Expand Down

0 comments on commit d457ab2

Please sign in to comment.