File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
reverse_engineering/helpers Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -641,7 +641,8 @@ const handleDefinitionSchemaProps = (schema, fieldOrder) => {
641641
642642 const fixedSchema = convertFormatToMode ( setMissedType ( schema ) ) ;
643643 const schemaWithAdditionalPropertiesData = handleAdditionalProperties ( fixedSchema ) ;
644- const reorderedSchema = commonHelper . reorderFields ( schemaWithAdditionalPropertiesData , fieldOrder ) ;
644+ const schemaWithExtensions = handleSchemaExtensions ( schemaWithAdditionalPropertiesData ) ;
645+ const reorderedSchema = commonHelper . reorderFields ( schemaWithExtensions , fieldOrder ) ;
645646 const schemaWithHandledProperties = Object . keys ( reorderedSchema ) . reduce ( ( accumulator , property ) => {
646647 if ( property === 'example' ) {
647648 property = 'sample' ;
You can’t perform that action at this time.
0 commit comments