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", "type": "object",
"properties": { "properties": {
"names": { "names": {
"type": [ "type": "array",
"string" "items": {
] "type": "string"
}
}, },
"action": { "action": {
"$ref": "#/definitions/SeccompAction" "$ref": "#/definitions/SeccompAction"