We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dc1fb6 commit 990df4eCopy full SHA for 990df4e
1 file changed
packages/elements-core/src/utils/exampleGeneration/exampleGeneration.ts
@@ -62,7 +62,6 @@ export const generateExampleFromMediaTypeContent = (
62
63
export const generateExamplesFromJsonSchema = (schema: JSONSchema7 & { 'x-examples'?: unknown }): Example[] => {
64
const examples: Example[] = [];
65
- console.log('from generateExamplesFromJsonSchema', JSON.parse(JSON.stringify(schema)));
66
const hasResolvedProperties = (schemaToCheck: JSONSchema7): boolean => {
67
// Case 1: Direct object with properties
68
if (schemaToCheck.properties && Object.keys(schemaToCheck.properties).length > 0) {
0 commit comments