File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed
packages/openapi-ts/src/openApi/3.1.x/parser Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -801,16 +801,6 @@ const parseOneOf = ({
801
801
return irSchema ;
802
802
} ;
803
803
804
- const parsePatternProperties = ( {
805
- context,
806
- schema,
807
- state,
808
- } : {
809
- context : IR . Context ;
810
- schema : SchemaWithRequired < SchemaObject , 'patternProperties' > ;
811
- state : SchemaState ;
812
- } ) : IR . SchemaObject => parseObject ( { context, schema, state } ) ;
813
-
814
804
const parseRef = ( {
815
805
context,
816
806
schema,
@@ -1094,14 +1084,6 @@ export const schemaToIrSchema = ({
1094
1084
} ) ;
1095
1085
}
1096
1086
1097
- if ( schema . patternProperties ) {
1098
- return parsePatternProperties ( {
1099
- context,
1100
- schema : schema as SchemaWithRequired < SchemaObject , 'patternProperties' > ,
1101
- state,
1102
- } ) ;
1103
- }
1104
-
1105
1087
// infer object based on the presence of properties
1106
1088
if ( schema . type || schema . properties ) {
1107
1089
return parseType ( {
You can’t perform that action at this time.
0 commit comments