Merge pull request #712 from wking/seccomp-json-schema-names

schema/defs-linux: Fix type for seccomp names
This commit is contained in:
Mrunal Patel 2017-03-09 09:56:45 -08:00 committed by GitHub
commit 71afb411fe
1 changed files with 4 additions and 3 deletions

View File

@ -66,9 +66,10 @@
"type": "object",
"properties": {
"names": {
"type": [
"string"
]
"type": "array",
"items": {
"type": "string"
}
},
"action": {
"$ref": "#/definitions/SeccompAction"