forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcdk.json
38 lines (38 loc) · 739 Bytes
/
cdk.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://json.schemastore.org/cdk.json",
"properties": {
"app": {
"type": "string",
"minLength": 1
},
"build": {
"type": "string"
},
"versionReporting": {
"type": "boolean"
},
"watch": {
"type": "object",
"properties": {
"include": {
"type": "array",
"items": {
"type": "string"
}
},
"exclude": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"context": {
"type": "object"
}
},
"title": "Schema for AWS CDK context files (cdk.json)",
"type": "object"
}