This repository has been archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
example-schemas.ts
213 lines (200 loc) · 3.93 KB
/
example-schemas.ts
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
import {
CustomFormat,
CustomFormats,
detectors,
extend,
JsonSchemaFormats,
} from '../src'
import { ObjectSchema, SchemaCollection, VersionedSchema } from '../src/objects'
import { combineSchemas, versionSchemas } from '../src/utils'
const traits100: ObjectSchema = {
version: {
major: 1,
minor: 0,
patch: 0,
},
schema: {
type: 'object',
title: 'Traits',
description: 'Physical traits of person',
properties: {
eyeColor: {
type: 'string',
description: 'Eye color',
minLength: 2,
maxLength: 20,
},
hairColor: {
type: 'string',
description: 'Hair color',
},
},
additionalProperties: false,
},
example: {
eyeColor: 'brown',
hairColor: 'black',
},
}
const name: CustomFormat = {
name: 'name',
description: 'Custom name format',
detect: /^[A-Z][a-z]+$/,
defaultValue: 'Buddy',
}
const exampleFormats: CustomFormats = {
name,
}
// individual schema describing "Person" v1.0.0
const person100: ObjectSchema = {
version: {
major: 1,
minor: 0,
patch: 0,
},
schema: {
type: 'object',
title: 'Person',
description: 'An example schema describing a person',
properties: {
name: {
type: 'string',
format: 'name',
description: 'this person needs a name',
minLength: 2,
},
age: {
type: 'integer',
minimum: 0,
description: 'Age in years',
},
},
required: ['name', 'age'],
additionalProperties: false,
},
example: {
name: 'Joe',
age: 10,
},
}
const person110: ObjectSchema = extend(person100, {
schema: {
description: 'Person with title',
properties: {
title: {
type: 'string',
format: null,
description: 'How to address this person',
},
},
},
example: {
title: 'mr',
},
})
const person120: ObjectSchema = extend(person110, {
schema: {
description: 'Person with traits',
properties: {
traits: {
...traits100.schema,
see: traits100,
},
},
},
example: {
name: 'Joe',
age: 10,
traits: {
eyeColor: 'brown',
hairColor: 'black',
},
},
})
// example schema that has an array of "Person" objects
const team100: ObjectSchema = {
version: {
major: 1,
minor: 0,
patch: 0,
},
schema: {
type: 'object',
title: 'Team',
description: 'A team of people',
properties: {
people: {
type: 'array',
items: {
...person100.schema,
},
see: person100,
},
},
additionalProperties: false,
},
example: {
people: [person100.example],
},
}
const car100: ObjectSchema = {
version: {
major: 1,
minor: 0,
patch: 0,
},
schema: {
type: 'object',
title: 'Car',
description: 'A motor vehicle',
properties: {
color: {
type: 'string',
},
},
additionalProperties: false,
required: true,
},
example: {
color: 'red',
},
}
const car110: ObjectSchema = extend(car100, {
schema: {
properties: {
doors: {
type: 'number',
required: false,
},
},
},
example: {
doors: 2,
},
})
// collection of "Person" schemas by version.
// In our case there will be single version, but here is where we can combine multiple
// versions like: versionSchemas(person100, person110, person200, ...)
const personVersions: VersionedSchema = versionSchemas(
person100,
person110,
person120,
)
const teamVersions: VersionedSchema = versionSchemas(team100)
const carVersions: VersionedSchema = versionSchemas(car100, car110)
// combines "Person" versions with other schemas if any
const schemas: SchemaCollection = combineSchemas(
personVersions,
teamVersions,
carVersions,
)
const formats: JsonSchemaFormats = detectors(exampleFormats)
export {
car100,
person100,
person110,
person120,
formats,
schemas,
exampleFormats,
}