Fix Schema (#7347)

This commit is contained in:
MeiMei
2021-03-13 22:15:20 +09:00
committed by GitHub
parent 9cf811b048
commit 9e634360fa
3 changed files with 16 additions and 8 deletions

View File

@@ -56,16 +56,24 @@ export const packedAntennaSchema = {
type: 'array' as const,
optional: false as const, nullable: false as const,
items: {
type: 'string' as const,
optional: false as const, nullable: false as const
type: 'array' as const,
optional: false as const, nullable: false as const,
items: {
type: 'string' as const,
optional: false as const, nullable: false as const
}
}
},
execludeKeywords: {
excludeKeywords: {
type: 'array' as const,
optional: false as const, nullable: false as const,
items: {
type: 'string' as const,
optional: false as const, nullable: false as const
type: 'array' as const,
optional: false as const, nullable: false as const,
items: {
type: 'string' as const,
optional: false as const, nullable: false as const
}
}
},
src: {