Skip to content

Commit

Permalink
Merge pull request #712 from wking/seccomp-json-schema-names
Browse files Browse the repository at this point in the history
schema/defs-linux: Fix type for seccomp names
  • Loading branch information
Mrunal Patel authored Mar 9, 2017
2 parents ce9db85 + 5bf9b95 commit 71afb41
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions schema/defs-linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@
"type": "object",
"properties": {
"names": {
"type": [
"string"
]
"type": "array",
"items": {
"type": "string"
}
},
"action": {
"$ref": "#/definitions/SeccompAction"
Expand Down

0 comments on commit 71afb41

Please sign in to comment.