Skip to content

Commit 71afb41

Browse files
author
Mrunal Patel
authored
Merge pull request #712 from wking/seccomp-json-schema-names
schema/defs-linux: Fix type for seccomp names
2 parents ce9db85 + 5bf9b95 commit 71afb41

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

schema/defs-linux.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,10 @@
6666
"type": "object",
6767
"properties": {
6868
"names": {
69-
"type": [
70-
"string"
71-
]
69+
"type": "array",
70+
"items": {
71+
"type": "string"
72+
}
7273
},
7374
"action": {
7475
"$ref": "#/definitions/SeccompAction"

0 commit comments

Comments
 (0)