1
0
mirror of https://github.com/opencontainers/runtime-spec.git synced 2026-02-05 09:45:57 +01:00

Merge pull request #1307 from giuseppe/fix-schema

schema: fix two regressions
This commit is contained in:
Qiang Huang
2025-12-11 15:54:40 +08:00
committed by GitHub
2 changed files with 4 additions and 6 deletions

View File

@@ -73,11 +73,9 @@
},
"iomems": {
"type": "array",
"items": [
{
"$ref": "defs-vm.json#/definitions/IOMemEntryFormat"
}
]
"items": {
"$ref": "defs-vm.json#/definitions/IOMemEntryFormat"
}
},
"irqs": {
"$ref": "defs.json#/definitions/ArrayOfUint32"

View File

@@ -78,7 +78,7 @@
"ArrayOfUint32": {
"type": "array",
"items": {
"$ref": "#definitions/uint32"
"$ref": "#/definitions/uint32"
}
},
"FileMode": {