Merge pull request #712 from wking/seccomp-json-schema-names
schema/defs-linux: Fix type for seccomp names
This commit is contained in:
commit
71afb411fe
|
@ -66,9 +66,10 @@
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"names": {
|
"names": {
|
||||||
"type": [
|
"type": "array",
|
||||||
"string"
|
"items": {
|
||||||
]
|
"type": "string"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"$ref": "#/definitions/SeccompAction"
|
"$ref": "#/definitions/SeccompAction"
|
||||||
|
|
Loading…
Reference in New Issue