Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
780 bytes
|
Line | |
---|
1 | {
|
---|
2 | "$schema": "http://json-schema.org/draft-07/schema",
|
---|
3 | "$id": "BuilderInputSchema",
|
---|
4 | "title": "Input schema for builders.",
|
---|
5 | "type": "object",
|
---|
6 | "properties": {
|
---|
7 | "workspaceRoot": {
|
---|
8 | "type": "string"
|
---|
9 | },
|
---|
10 | "currentDirectory": {
|
---|
11 | "type": "string"
|
---|
12 | },
|
---|
13 | "id": {
|
---|
14 | "type": "number"
|
---|
15 | },
|
---|
16 | "target": {
|
---|
17 | "type": "object",
|
---|
18 | "properties": {
|
---|
19 | "project": {
|
---|
20 | "type": "string"
|
---|
21 | },
|
---|
22 | "target": {
|
---|
23 | "type": "string"
|
---|
24 | },
|
---|
25 | "configuration": {
|
---|
26 | "type": "string"
|
---|
27 | }
|
---|
28 | },
|
---|
29 | "required": ["project", "target"]
|
---|
30 | },
|
---|
31 | "info": {
|
---|
32 | "type": "object"
|
---|
33 | },
|
---|
34 | "options": {
|
---|
35 | "type": "object"
|
---|
36 | }
|
---|
37 | },
|
---|
38 | "required": ["currentDirectory", "id", "info", "workspaceRoot"]
|
---|
39 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.