-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.go
More file actions
169 lines (162 loc) · 4.93 KB
/
Copy pathschema.go
File metadata and controls
169 lines (162 loc) · 4.93 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
* Copyright 2025 - 2026 Zigflow authors <https://github.com/zigflow/schema/graphs/contributors>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package schema
import (
"fmt"
"github.com/google/jsonschema-go/jsonschema"
)
func BuildSchema(version, format string) (*jsonschema.Schema, error) {
schemaID := fmt.Sprintf(SchemaIDVersioned, version, format)
if version == "development" {
schemaID = fmt.Sprintf(SchemaID, format)
}
schema := &jsonschema.Schema{
ID: schemaID,
Schema: SchemaVersion,
Title: SchemaTitle,
Description: SchemaDescription,
Type: typeObject,
Required: []string{propDo, propDocument},
Properties: schemaProperties,
Defs: buildDefinitions(),
If: &jsonschema.Schema{
Required: []string{"schedule"},
},
Then: &jsonschema.Schema{
Required: []string{propDocument},
Properties: map[string]*jsonschema.Schema{
propDocument: {
Required: []string{propMetadata},
Properties: map[string]*jsonschema.Schema{
propMetadata: {
Required: []string{propScheduleWorkflowName},
},
},
},
},
},
}
// Validate the generated schema
if _, err := schema.Resolve(nil); err != nil {
return nil, fmt.Errorf("error resolving schema: %w", err)
}
return schema, nil
}
var schemaProperties = map[string]*jsonschema.Schema{
propDo: {
Ref: SchemaRef("taskList"),
Title: "Do",
Description: "Defines the task(s) the workflow must perform.",
},
propDocument: {
Type: typeObject,
Title: "Document",
Description: "Documents the workflow",
Required: []string{propDSL, propTaskQueue, propWorkflowType, propVersion},
UnevaluatedProperties: falseSchema(),
Properties: map[string]*jsonschema.Schema{
propDSL: {
Type: typeString,
Title: "WorkflowDSL",
Pattern: semVerPattern,
Description: "The version of the DSL used by the workflow.",
},
propMetadata: {
Type: typeObject,
Title: "WorkflowMetadata",
Description: "Holds additional information about the workflow.",
AdditionalProperties: trueSchema(),
AllOf: []*jsonschema.Schema{
{Ref: SchemaRef(defCommonMetadata)},
{Ref: SchemaRef(defDocumentMetadata)},
},
},
propTaskQueue: {
Type: typeString,
Title: "WorkflowTaskQueue",
Pattern: dnsLabelPattern,
Description: "The Temporal task queue the workflow runs on.",
},
propWorkflowType: {
Type: typeString,
Title: "WorkflowType",
Pattern: dnsLabelPattern,
Description: "The Temporal workflow type name.",
},
propSummary: {
Type: typeString,
Title: "WorkflowSummary",
Description: "The workflow's Markdown summary.",
},
"tags": {
Type: typeObject,
Title: "WorkflowTags",
Description: "A key/value mapping of the workflow's tags, if any.",
AdditionalProperties: &jsonschema.Schema{},
},
"title": {
Type: typeString,
Title: "WorkflowTitle",
Description: "The workflow's title.",
},
propVersion: {
Type: typeString,
Title: "WorkflowVersion",
Pattern: semVerPattern,
Description: "The workflow's semantic version.",
},
},
},
propInput: {
Ref: SchemaRef(propInput),
Title: "Input",
Description: "Configures the workflow's input.",
},
propOutput: {
Ref: SchemaRef(defOutput),
Title: "Output",
Description: "Configures the workflow's output.",
},
"schedule": {
Type: typeObject,
Title: "Schedule",
Description: "Schedules the workflow.",
UnevaluatedProperties: falseSchema(),
Properties: map[string]*jsonschema.Schema{
propCron: {
Type: typeString,
Title: "ScheduleCron",
Description: "Specifies the schedule using a cron expression, e.g., '0 0 * * *' for daily at midnight.",
},
"every": {
Ref: SchemaRef("duration"),
Title: "ScheduleEvery",
Description: "Specifies the duration of the interval at which the workflow should be executed.",
},
},
},
defTimeout: {
Title: "DoTimeout",
Deprecated: true,
OneOf: []*jsonschema.Schema{
{
Ref: SchemaRef(defTimeout),
Title: "TimeoutDefinition",
Description: "The workflow's timeout configuration, if any.",
},
},
},
}