-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples_test.go
224 lines (197 loc) · 5.15 KB
/
examples_test.go
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package jschema_test
import (
"fmt"
"time"
"github.com/NaturalSelectionLabs/jschema"
"github.com/NaturalSelectionLabs/jschema/lib/test"
"github.com/naturalselectionlabs/vary"
)
func ExampleNew() {
type Node struct {
// Use tags like default, examples to set the json schema validation rules.
ID int `json:"id" default:"1" examples:"[1,2,3]" min:"0" max:"100"`
// Use the tags to set description, min, max, etc. All available tags are [jschema.JTag].
// Use [jschema.JTagItemPrefix] to prefix [jschema.JTag] to set the array item.
Children []*Node `json:"children" description:"The children of the node" minItems:"0" maxItems:"10"`
}
// Create a schema list instance
schemas := jschema.New("#/components/schemas")
// Define a type within the schema
schemas.Define(Node{})
schemas.Description(Node{}, "A node in the tree")
fmt.Println(schemas.String())
// Output:
// {
// "Node": {
// "title": "Node",
// "description": "A node in the tree",
// "type": "object",
// "properties": {
// "children": {
// "description": "The children of the node",
// "type": "array",
// "items": {
// "anyOf": [
// {
// "$ref": "#/components/schemas/Node"
// },
// {
// "type": "null"
// }
// ]
// },
// "minItems": 0,
// "maxItems": 10
// },
// "id": {
// "default": 1,
// "examples": [
// 1,
// 2,
// 3
// ],
// "type": "integer",
// "maximum": 100,
// "minimum": 0
// }
// },
// "required": [
// "id",
// "children"
// ],
// "additionalProperties": false
// }
// }
}
func ExampleSchemas() {
// Create a schema list instance
schemas := jschema.New("#/components/schemas")
type Metadata interface{}
// Make the metadata field accept either A or B
iMetadata := vary.New(new(Metadata))
type A string
iMetadata.Add(A(""))
type B int
iMetadata.Add(B(0))
type Node struct {
// Use the pattern or format tag to set the standard json schema validation rule
Name string `json:"name" pattern:"^[a-z]+$" format:"name"`
Metadata Metadata `json:"metadata,omitempty"` // omitempty make this field optional
Version string `json:"version"`
// jschema supports github.com/dmarkham/enumer generated enum
// The enum type must implements [jschema.Enum] or [jschema.EnumString].
// Otherwise, it will be treated as a normal type.
Enum test.Enum `json:"enum"`
}
schemas.Define(Node{})
node := schemas.PeakSchema(Node{})
// Define default value
{
node.Properties["name"].Default = "jack"
}
// Define constants
{
node.Properties["version"] = schemas.Const("v1")
}
fmt.Println(schemas.String())
// Output:
// {
// "A": {
// "title": "A",
// "description": "github.com/NaturalSelectionLabs/jschema_test.A",
// "type": "string"
// },
// "B": {
// "title": "B",
// "description": "github.com/NaturalSelectionLabs/jschema_test.B",
// "type": "integer"
// },
// "Enum": {
// "title": "Enum",
// "description": "github.com/NaturalSelectionLabs/jschema/lib/test.Enum",
// "enum": [
// "one",
// "three",
// "two"
// ]
// },
// "Metadata": {
// "title": "Metadata",
// "description": "github.com/NaturalSelectionLabs/jschema_test.Metadata",
// "anyOf": [
// {
// "$ref": "#/components/schemas/A"
// },
// {
// "$ref": "#/components/schemas/B"
// }
// ]
// },
// "Node": {
// "title": "Node",
// "description": "github.com/NaturalSelectionLabs/jschema_test.Node",
// "type": "object",
// "properties": {
// "enum": {
// "$ref": "#/components/schemas/Enum"
// },
// "metadata": {
// "$ref": "#/components/schemas/Metadata"
// },
// "name": {
// "default": "jack",
// "type": "string",
// "format": "name",
// "pattern": "^[a-z]+$"
// },
// "version": {
// "type": "string",
// "enum": [
// "v1"
// ]
// }
// },
// "required": [
// "name",
// "version",
// "enum"
// ],
// "additionalProperties": false
// }
// }
}
func Example_custom_handler() {
s := jschema.New("")
s.Hijack(time.Time{}, func(scm *jschema.Schema) {
// If we don't this the time will be a struct
scm.Type = jschema.TypeString
scm.AdditionalProperties = nil
})
type Data struct {
Time time.Time `json:"time"`
}
s.Define(Data{})
fmt.Println(s.String())
// Output:
// {
// "Data": {
// "title": "Data",
// "description": "github.com/NaturalSelectionLabs/jschema_test.Data",
// "type": "object",
// "properties": {
// "time": {
// "$ref": "#/$defs/Time"
// }
// },
// "required": [
// "time"
// ],
// "additionalProperties": false
// },
// "Time": {
// "title": "Time",
// "description": "time.Time",
// "type": "string"
// }
// }
}