Merge pull request #665 from Mashimiao/schema-fix-string-ref
schema: fix invalid string reference
This commit is contained in:
commit
dd5e44a6b4
|
@ -179,11 +179,11 @@
|
|||
"properties": {
|
||||
"cpus": {
|
||||
"id": "https://opencontainers.org/schema/bundle/linux/resources/cpu/cpus",
|
||||
"$ref": "defs.json#/definitions/string"
|
||||
"$ref": "string"
|
||||
},
|
||||
"mems": {
|
||||
"id": "https://opencontainers.org/schema/bundle/linux/resources/cpu/mems",
|
||||
"$ref": "defs.json#/definitions/string"
|
||||
"$ref": "string"
|
||||
},
|
||||
"period": {
|
||||
"id": "https://opencontainers.org/schema/bundle/linux/resources/cpu/period",
|
||||
|
@ -295,7 +295,7 @@
|
|||
},
|
||||
"cgroupsPath": {
|
||||
"id": "https://opencontainers.org/schema/bundle/linux/cgroupsPath",
|
||||
"$ref": "defs.json#/definitions/string"
|
||||
"$ref": "string"
|
||||
},
|
||||
"rootfsPropagation": {
|
||||
"id": "https://opencontainers.org/schema/bundle/linux/rootfsPropagation",
|
||||
|
|
|
@ -238,7 +238,7 @@
|
|||
"type": "boolean"
|
||||
},
|
||||
"type": {
|
||||
"$ref": "defs.json#/definitions/string"
|
||||
"$ref": "string"
|
||||
},
|
||||
"major": {
|
||||
"oneOf": [
|
||||
|
@ -261,7 +261,7 @@
|
|||
]
|
||||
},
|
||||
"access": {
|
||||
"$ref": "defs.json#/definitions/string"
|
||||
"$ref": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
|
Loading…
Reference in New Issue