We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 355c9dd commit 501eaaaCopy full SHA for 501eaaa
environment.json.schema
@@ -8,11 +8,38 @@
8
"python_packages": {
9
"type": "array",
10
"items": {
11
- "type": "string"
+ "type": "object",
12
+ "title": "Python packages with exact versions",
13
+ "required": [
14
+ "name",
15
+ "version"
16
+ ],
17
+ "properties": {
18
+ "name": {
19
+ "type": "string",
20
+ "title": "package name"
21
+ },
22
+ "version": {
23
24
+ "title": "exact package version"
25
+ }
26
27
}
28
},
29
"container": {
30
"type": "string"
31
32
+ "cloud": {
33
34
+ "env_name"
35
36
+ "env_name": {
37
38
+ "title": "name of the cloud provider (for example: GCP)"
39
40
+ "metadata": {
41
+ "type": "object"
42
43
44
45
0 commit comments