Skip to content

Commit

Permalink
Merge pull request #1117 from flouthoc/master
Browse files Browse the repository at this point in the history
defs-zos: [Fix] prevent schema parsers from hitting recursion-loop while resolving types.
  • Loading branch information
giuseppe authored Aug 16, 2021
2 parents 82ab996 + f0ac327 commit 130ae3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schema/defs-zos.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
"$ref": "defs.json#/definitions/FilePath"
},
"type": {
"$ref": "defs-zos.json#/definitions/FileType"
"$ref": "#/definitions/FileType"
},
"major": {
"$ref": "defs-zos.json#/definitions/Major"
"$ref": "#/definitions/Major"
},
"minor": {
"$ref": "defs-zos.json#/definitions/Minor"
"$ref": "#/definitions/Minor"
},
"fileMode": {
"$ref": "defs-zos.json#/definitions/FileMode"
"$ref": "#/definitions/FileMode"
},
"uid": {
"$ref": "defs.json#/definitions/UID"
Expand Down

0 comments on commit 130ae3b

Please sign in to comment.