Skip to content

Commit 4a34d8e

Browse files
committed
[json] additionalItems can be a schema (from microsoft#34546)
1 parent b2176de commit 4a34d8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/base/common/jsonSchema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface IJSONSchema {
2222
minItems?: number;
2323
maxItems?: number;
2424
uniqueItems?: boolean;
25-
additionalItems?: boolean;
25+
additionalItems?: boolean | IJSONSchema;
2626
pattern?: string;
2727
minLength?: number;
2828
maxLength?: number;

0 commit comments

Comments
 (0)