Skip to content

Commit

Permalink
Making exclusive parameter numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
OrIOg authored Jun 20, 2022
1 parent 79483f2 commit e7a0851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/OpenApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,9 @@ export interface SchemaObject extends ISpecificationExtension {
title?: string;
multipleOf?: number;
maximum?: number;
exclusiveMaximum?: boolean;
exclusiveMaximum?: number;
minimum?: number;
exclusiveMinimum?: boolean;
exclusiveMinimum?: number;
maxLength?: number;
minLength?: number;
pattern?: string;
Expand Down

0 comments on commit e7a0851

Please sign in to comment.