-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindmill-script-structure.json
More file actions
97 lines (97 loc) · 1.89 KB
/
windmill-script-structure.json
File metadata and controls
97 lines (97 loc) · 1.89 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/windmill/refs/heads/main/json-structure/windmill-script-structure.json",
"title": "Windmill Script Structure",
"description": "Structure definition for Windmill Script",
"structure": {
"type": "object",
"required": [
"hash",
"path",
"summary",
"description",
"content",
"created_by",
"created_at",
"archived",
"deleted",
"is_template",
"extra_perms",
"language",
"kind",
"starred",
"has_preprocessor"
],
"properties": {
"workspace_id": {
"type": "string"
},
"hash": {
"type": "string"
},
"path": {
"type": "string"
},
"parent_hashes": {
"type": "array",
"items": "string"
},
"summary": {
"type": "string"
},
"description": {
"type": "string"
},
"content": {
"type": "string"
},
"created_by": {
"type": "string"
},
"created_at": {
"type": "string"
},
"archived": {
"type": "boolean"
},
"schema": {
"type": "object"
},
"deleted": {
"type": "boolean"
},
"is_template": {
"type": "boolean"
},
"extra_perms": {
"type": "object"
},
"lock": {
"type": "string"
},
"lock_error_logs": {
"type": "string"
},
"language": {
"type": "ScriptLang"
},
"kind": {
"type": "string",
"enum": [
"script",
"failure",
"trigger",
"command",
"approval",
"preprocessor"
]
},
"starred": {
"type": "boolean"
},
"tag": {
"type": "string"
}
}
}
}