-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace DeepEqual by getSchemaDiff (#312)
- Loading branch information
Reuven Harrison
authored
Jul 9, 2023
1 parent
5dc9383
commit 519a522
Showing
9 changed files
with
103 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
openapi: 3.0.3 | ||
info: | ||
title: Test | ||
version: "0.1" | ||
paths: | ||
'/test': | ||
get: | ||
summary: Test Get with anyOf #1 | ||
responses: | ||
'200': | ||
description: Success | ||
content: | ||
'application/json': | ||
schema: | ||
anyOf: | ||
- type: object | ||
properties: | ||
prop1: | ||
type: string | ||
description: Some description | ||
- type: object | ||
properties: | ||
prop2: | ||
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
openapi: 3.0.3 | ||
info: | ||
title: Test | ||
version: "0.1" | ||
paths: | ||
'/test': | ||
get: | ||
summary: Test Get with anyOf | ||
responses: | ||
'200': | ||
description: Successful | ||
content: | ||
'application/json': | ||
schema: | ||
anyOf: | ||
- type: object | ||
properties: | ||
prop1: | ||
type: string | ||
description: Other description | ||
- type: object | ||
properties: | ||
prop2: | ||
type: string | ||
- type: object | ||
properties: | ||
prop3: | ||
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters