Skip to content

Commit d64c1d9

Browse files
authored
Merge pull request #1307 from giuseppe/fix-schema
schema: fix two regressions
2 parents fd25dd3 + 4361740 commit d64c1d9

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

schema/config-vm.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,9 @@
7373
},
7474
"iomems": {
7575
"type": "array",
76-
"items": [
77-
{
78-
"$ref": "defs-vm.json#/definitions/IOMemEntryFormat"
79-
}
80-
]
76+
"items": {
77+
"$ref": "defs-vm.json#/definitions/IOMemEntryFormat"
78+
}
8179
},
8280
"irqs": {
8381
"$ref": "defs.json#/definitions/ArrayOfUint32"

schema/defs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"ArrayOfUint32": {
7979
"type": "array",
8080
"items": {
81-
"$ref": "#definitions/uint32"
81+
"$ref": "#/definitions/uint32"
8282
}
8383
},
8484
"FileMode": {

0 commit comments

Comments
 (0)