We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 133219a commit 8c79eb4Copy full SHA for 8c79eb4
packages/core/src/types/oas3_2.ts
@@ -191,15 +191,12 @@ const Discriminator: NodeType = {
191
};
192
193
const Example: NodeType = {
194
+ ...Oas3_1Types.Example,
195
properties: {
- value: { resolvable: false },
196
- summary: { type: 'string' },
197
- description: { type: 'string' },
198
- externalValue: { type: 'string' },
+ ...Oas3_1Types.Example.properties,
199
dataValue: { resolvable: false },
200
serializedValue: { type: 'string' },
201
},
202
- extensionsPrefix: 'x-',
203
204
205
export const Oas3_2Types = {
@@ -216,5 +213,4 @@ export const Oas3_2Types = {
216
213
MediaType,
217
214
Discriminator,
218
215
Example,
219
- ExamplesMap: mapOf('Example'),
220
} as const;
0 commit comments