We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c792d2 commit 2bd93b9Copy full SHA for 2bd93b9
1 file changed
src/vs/base/common/jsonSchema.ts
@@ -40,11 +40,17 @@ export interface IJSONSchema {
40
enum?: any[];
41
format?: string;
42
43
- defaultSnippets?: { label?: string; description?: string; body: any; }[]; // VSCode extension
+ defaultSnippets?: IJSONSchemaSnippet[]; // VSCode extension
44
errorMessage?: string; // VSCode extension
45
deprecatedMessage?: string; // VSCode extension
46
}
47
48
export interface IJSONSchemaMap {
49
[name: string]: IJSONSchema;
50
51
+
52
+export interface IJSONSchemaSnippet {
53
+ label?: string;
54
+ description?: string;
55
+ body: any;
56
+}
0 commit comments