@@ -172,7 +172,6 @@ def yaml(self) -> str:
172172 info:
173173 title: Cats API
174174 version: 1.0.0
175- jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
176175 paths:
177176 /:
178177 summary: summary
@@ -214,7 +213,6 @@ def json(self) -> str:
214213 "title": "Cats API",
215214 "version": "1.0.0"
216215 },
217- "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
218216 "paths": {
219217 "/": {
220218 "summary": "summary"
@@ -613,7 +611,6 @@ def yaml(self) -> str:
613611 info:
614612 title: Weather API
615613 version: 0.0.0-alpha
616- jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
617614 paths:
618615 /weather:
619616 summary: Call current weather data for one location
@@ -683,7 +680,6 @@ def json(self) -> str:
683680 "title": "Weather API",
684681 "version": "0.0.0-alpha"
685682 },
686- "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
687683 "paths": {
688684 "/weather": {
689685 "summary": "Call current weather data for one location",
@@ -831,7 +827,6 @@ def yaml(self) -> str:
831827info:
832828 title: Example API
833829 version: 0.0.0-alpha
834- jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
835830paths:
836831 /:
837832 summary: Test the example snake_case properness
@@ -869,7 +864,6 @@ def json(self) -> str:
869864 "title": "Example API",
870865 "version": "0.0.0-alpha"
871866 },
872- "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
873867 "paths": {
874868 "/": {
875869 "summary": "Test the example snake_case properness",
@@ -976,7 +970,6 @@ def yaml(self) -> str:
976970info:
977971 title: Example API
978972 version: 0.0.0-alpha
979- jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
980973paths:
981974 /:
982975 summary: Test the example snake_case properness
@@ -1022,7 +1015,6 @@ def json(self) -> str:
10221015 "title": "Example API",
10231016 "version": "0.0.0-alpha"
10241017 },
1025- "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
10261018 "paths": {
10271019 "/": {
10281020 "summary": "Test the example snake_case properness",
@@ -1153,7 +1145,6 @@ def yaml(self) -> str:
11531145info:
11541146 title: Example API
11551147 version: 0.0.0-alpha
1156- jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
11571148paths:
11581149 /:
11591150 summary: Test the example snake_case properness
@@ -1208,7 +1199,6 @@ def json(self) -> str:
12081199 "title": "Example API",
12091200 "version": "0.0.0-alpha"
12101201 },
1211- "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
12121202 "paths": {
12131203 "/": {
12141204 "summary": "Test the example snake_case properness",
@@ -1399,7 +1389,6 @@ def yaml(self) -> str:
13991389info:
14001390 title: Example API
14011391 version: 0.0.0-alpha
1402- jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
14031392paths:
14041393 /:
14051394 description: Lorem ipsum dolor sit amet
@@ -1499,7 +1488,6 @@ def json(self) -> str:
14991488 "title": "Example API",
15001489 "version": "0.0.0-alpha"
15011490 },
1502- "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
15031491 "paths": {
15041492 "/": {
15051493 "description": "Lorem ipsum dolor sit amet",
@@ -1697,7 +1685,6 @@ def yaml(self) -> str:
16971685info:
16981686 title: Example API
16991687 version: 0.0.0-alpha
1700- jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
17011688paths:
17021689 /:
17031690 summary: Test the example snake_case properness
@@ -1743,7 +1730,6 @@ def json(self) -> str:
17431730 "title": "Example API",
17441731 "version": "0.0.0-alpha"
17451732 },
1746- "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
17471733 "paths": {
17481734 "/": {
17491735 "summary": "Test the example snake_case properness",
@@ -1880,7 +1866,6 @@ def get_instance(self) -> Any:
18801866 def yaml (self ) -> str :
18811867 return """
18821868 openapi: 3.1.0
1883- jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
18841869 servers:
18851870 - url: https://{username}.gigantic-server.com:{port}/{basePath}
18861871 description: The production API server
@@ -1902,7 +1887,6 @@ def json(self) -> str:
19021887 return """
19031888 {
19041889 "openapi": "3.1.0",
1905- "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
19061890 "servers": [
19071891 {
19081892 "url": "https://{username}.gigantic-server.com:{port}/{basePath}",
0 commit comments