Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/ws-daemon/initreq-schema.json
2492 views
1
{
2
"$schema": "http://json-schema.org/draft-04/schema#",
3
"$ref": "#/definitions/InitWorkspaceRequest",
4
"title": "ws-manager config schema - generated using wsman generate init-request",
5
"definitions": {
6
"InitWorkspaceRequest": {
7
"properties": {
8
"id": {
9
"type": "string"
10
},
11
"initializer": {
12
"$schema": "http://json-schema.org/draft-04/schema#",
13
"$ref": "#/definitions/WorkspaceInitializer"
14
},
15
"metadata": {
16
"$schema": "http://json-schema.org/draft-04/schema#",
17
"$ref": "#/definitions/WorkspaceMetadata"
18
}
19
},
20
"additionalProperties": false,
21
"type": "object"
22
},
23
"WorkspaceInitializer": {
24
"properties": {
25
"spec": {
26
"additionalProperties": true,
27
"type": "object"
28
}
29
},
30
"additionalProperties": false,
31
"type": "object"
32
},
33
"WorkspaceMetadata": {
34
"properties": {
35
"metaId": {
36
"type": "string"
37
},
38
"owner": {
39
"type": "string"
40
}
41
},
42
"additionalProperties": false,
43
"type": "object"
44
}
45
}
46
}
47