diff --git a/types/swagger-schema-official/index.d.ts b/types/swagger-schema-official/index.d.ts index 262e469599..c854b1a96c 100644 --- a/types/swagger-schema-official/index.d.ts +++ b/types/swagger-schema-official/index.d.ts @@ -176,7 +176,7 @@ export type BaseSchema = { export interface Schema extends BaseSchema { $ref?: string; allOf?: Schema[]; - additionalProperties?: Schema; + additionalProperties?: Schema | boolean; properties?: { [propertyName: string]: Schema }; discriminator?: string; readOnly?: boolean;