source: trip-planner-front/node_modules/@angular-devkit/architect/src/output-schema.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 628 bytes
Line 
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "BuilderOutputSchema",
4 "title": "Output schema for builders.",
5 "type": "object",
6 "properties": {
7 "success": {
8 "type": "boolean"
9 },
10 "error": {
11 "type": "string"
12 },
13 "target": {
14 "type": "object",
15 "properties": {
16 "project": {
17 "type": "string"
18 },
19 "target": {
20 "type": "string"
21 },
22 "configuration": {
23 "type": "string"
24 }
25 }
26 },
27 "info": {
28 "type": "object"
29 }
30 },
31 "additionalProperties": true,
32 "required": ["success"]
33}
Note: See TracBrowser for help on using the repository browser.