We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb4032d + 89b0f13 commit 003260eCopy full SHA for 003260e
packages/openapi-ts/src/openApi/shared/types/schema.d.ts
@@ -6,7 +6,10 @@ export interface SchemaState {
6
$ref?: string;
7
circularReferenceTracker: Set<string>;
8
/**
9
- * True if current schema is being parsed inside an allOf composition.
+ * True if current schema is part of an allOf composition. This is used to
10
+ * avoid emitting [key: string]: never for empty objects with
11
+ * additionalProperties: false inside allOf, which would override inherited
12
+ * properties from other schemas in the composition.
13
*/
14
inAllOf?: boolean;
15
0 commit comments