Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit 3731ee8

Browse files
authored
v2 replace openapi generator with openapi json schema generator (#113)
* Replaces references with new project location * Samples regenerated * FIxes python tests
1 parent 988496b commit 3731ee8

File tree

1,873 files changed

+2829
-2850
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,873 files changed

+2829
-2850
lines changed

modules/openapi-json-schema-generator-cli/src/main/java/org/openapitools/codegen/OpenAPIGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* User: lanwen Date: 24.03.15 Time: 17:56
3232
* <p>
33-
* Command line interface for OpenAPI Generator use `openapi-generator-cli.jar help` for more info
33+
* Command line interface for OpenAPI JSON Schema Generator use `openapi-generator-cli.jar help` for more info
3434
*/
3535
public class OpenAPIGenerator {
3636

@@ -41,7 +41,7 @@ public static void main(String[] args) {
4141
.withDescription(
4242
String.format(
4343
Locale.ROOT,
44-
"OpenAPI Generator CLI %s (%s).",
44+
"OpenAPI JSON Schema Generator CLI %s (%s).",
4545
buildInfo.getVersion(),
4646
buildInfo.getSha()))
4747
.withDefaultCommand(HelpCommand.class)

modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenHeader.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,8 @@
1919

2020
import org.openapitools.codegen.utils.ModelUtils;
2121

22-
import java.util.HashMap;
23-
import java.util.HashSet;
24-
import java.util.LinkedHashMap;
2522
import java.util.Map;
2623
import java.util.Objects;
27-
import java.util.Set;
2824

2925
/**
3026
* Describes a single operation parameter in the OAS specification.

modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenRequestBody.java

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
/*
2-
* Copyright 2018 OpenAPI-Generator Contributors (https://openapi-generator.tech)
3-
* Copyright 2018 SmartBear Software
4-
*
5-
* Licensed under the Apache License, Version 2.0 (the "License");
6-
* you may not use this file except in compliance with the License.
7-
* You may obtain a copy of the License at
8-
*
9-
* https://www.apache.org/licenses/LICENSE-2.0
10-
*
11-
* Unless required by applicable law or agreed to in writing, software
12-
* distributed under the License is distributed on an "AS IS" BASIS,
13-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
* See the License for the specific language governing permissions and
15-
* limitations under the License.
16-
*/
17-
181
package org.openapitools.codegen;
192

203
import java.util.HashMap;

modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -640,9 +640,9 @@ public void setOpenAPI(OpenAPI openAPI) {
640640
@SuppressWarnings("static-method")
641641
public void postProcess() {
642642
System.out.println("################################################################################");
643-
System.out.println("# Thanks for using OpenAPI Generator. #");
643+
System.out.println("# Thanks for using OpenAPI JSON Schema Generator. #");
644644
System.out.println("# Please consider donation to help us maintain this project \uD83D\uDE4F #");
645-
System.out.println("# https://opencollective.com/openapi_generator/donate #");
645+
System.out.println("# https://github.com/sponsors/spacether #");
646646
System.out.println("################################################################################");
647647
}
648648

@@ -1387,7 +1387,7 @@ public DefaultCodegen() {
13871387
generatorMetadata = GeneratorMetadata.newBuilder()
13881388
.stability(Stability.STABLE)
13891389
.featureSet(DefaultFeatureSet)
1390-
.generationMessage(String.format(Locale.ROOT, "OpenAPI Generator: %s (%s)", getName(), codegenType.toValue()))
1390+
.generationMessage(String.format(Locale.ROOT, "OpenAPI JSON Schema Generator: %s (%s)", getName(), codegenType.toValue()))
13911391
.build();
13921392

13931393
defaultIncludes = new HashSet<>(

modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public TemplateProcessor getTemplateProcessor() {
169169

170170
/**
171171
* Programmatically disable the output of .openapi-generator/VERSION, .openapi-generator-ignore,
172-
* or other metadata files used by OpenAPI Generator.
172+
* or other metadata files used by OpenAPI JSON Schema Generator.
173173
*
174174
* @param generateMetadata true: enable outputs, false: disable outputs
175175
*/
@@ -307,9 +307,9 @@ private void configureOpenAPIInfo() {
307307
if (StringUtils.isEmpty(info.getDescription())) {
308308
// set a default description if none if provided
309309
config.additionalProperties().put("appDescription",
310-
"No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)");
310+
"No description provided (generated by Openapi JSON Schema Generator https://github.com/openapi-json-schema-tools/openapi-json-schema-generator)");
311311
config.additionalProperties().put("appDescriptionWithNewLines", config.additionalProperties().get("appDescription"));
312-
config.additionalProperties().put("unescapedAppDescription", "No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)");
312+
config.additionalProperties().put("unescapedAppDescription", "No description provided (generated by Openapi JSON Schema Generator https://github.com/openapi-json-schema-tools/openapi-json-schema-generator)");
313313
} else {
314314
config.additionalProperties().put("appDescription", config.escapeText(info.getDescription()));
315315
config.additionalProperties().put("appDescriptionWithNewLines", config.escapeTextWhileAllowingNewLines(info.getDescription()));

modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/KotlinClientCodegen.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -887,9 +887,9 @@ private static boolean isMultipartType(List<Map<String, String>> consumes) {
887887
@Override
888888
public void postProcess() {
889889
System.out.println("################################################################################");
890-
System.out.println("# Thanks for using OpenAPI Generator. #");
890+
System.out.println("# Thanks for using OpenAPI JSON Schema Generator. #");
891891
System.out.println("# Please consider donation to help us maintain this project \uD83D\uDE4F #");
892-
System.out.println("# https://opencollective.com/openapi_generator/donate #");
892+
System.out.println("# https://github.com/sponsors/spacether #");
893893
System.out.println("# #");
894894
System.out.println("# This generator's contributed by Jim Schubert (https://github.com/jimschubert)#");
895895
System.out.println("# Please support his work directly via https://patreon.com/jimschubert \uD83D\uDE4F #");

modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2152,9 +2152,9 @@ public String toRefClass(String ref, String sourceJsonPath, String expectedCompo
21522152
@Override
21532153
public void postProcess() {
21542154
System.out.println("################################################################################");
2155-
System.out.println("# Thanks for using OpenAPI Generator. #");
2155+
System.out.println("# Thanks for using OpenAPI JSON Schema Generator. #");
21562156
System.out.println("# Please consider donation to help us maintain this project \uD83D\uDE4F #");
2157-
System.out.println("# https://opencollective.com/openapi_generator/donate #");
2157+
System.out.println("# https://github.com/sponsors/spacether #");
21582158
System.out.println("# #");
21592159
System.out.println("# This generator was written by Justin Black (https://github.com/spacether) #");
21602160
System.out.println("# Please support his work directly via https://github.com/sponsors/spacether \uD83D\uDE4F#");

modules/openapi-json-schema-generator/src/main/resources/python/README_onlypackage.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{{{appDescription}}}
44
{{/if}}
55

6-
The `{{packageName}}` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
6+
The `{{packageName}}` package is automatically generated by the [OpenAPI JSON Schema Generator](https://github.com/openapi-json-schema-tools/openapi-json-schema-generator) project:
77

88
- API version: {{appVersion}}
99
- Package version: {{packageVersion}}

modules/openapi-json-schema-generator/src/main/resources/python/__init__test_paths.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from urllib3._collections import HTTPHeaderDict
77

88
class ApiTestMixin:
99
json_content_type = 'application/json'
10-
user_agent = 'OpenAPI-Generator/1.0.0/python'
10+
user_agent = 'OpenAPI-JSON-Schema-Generator/1.0.0/python'
1111

1212
@classmethod
1313
def assert_pool_manager_request_called_with(

modules/openapi-json-schema-generator/src/main/resources/python/api.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class {{classname}}(
1515
{{operationIdCamelCase}},
1616
{{/each}}
1717
):
18-
"""NOTE: This class is auto generated by OpenAPI Generator
19-
Ref: https://openapi-generator.tech
18+
"""NOTE: This class is auto generated by OpenAPI JSON Schema Generator
19+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
2020

2121
Do not edit the class manually.
2222
"""

modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -943,8 +943,8 @@ class ApiClient:
943943
the methods and models for each application are generated from the OpenAPI
944944
templates.
945945

946-
NOTE: This class is auto generated by OpenAPI Generator.
947-
Ref: https://openapi-generator.tech
946+
NOTE: This class is auto generated by OpenAPI JSON Schema Generator.
947+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
948948
Do not edit the class manually.
949949

950950
:param configuration: configuration_module.Configuration object for this client
@@ -978,7 +978,7 @@ class ApiClient:
978978
self.default_headers[header_name] = header_value
979979
self.cookie = cookie
980980
# Set default User-Agent.
981-
self.user_agent = '{{#if httpUserAgent}}{{{httpUserAgent}}}{{/if}}{{#unless httpUserAgent}}OpenAPI-Generator/{{{packageVersion}}}/python{{/unless}}'
981+
self.user_agent = '{{#if httpUserAgent}}{{{httpUserAgent}}}{{/if}}{{#unless httpUserAgent}}OpenAPI-JSON-Schema-Generator/{{{packageVersion}}}/python{{/unless}}'
982982

983983
def __enter__(self):
984984
return self
@@ -1248,8 +1248,8 @@ class ApiClient:
12481248

12491249

12501250
class Api(TypedDictInputVerifier):
1251-
"""NOTE: This class is auto generated by OpenAPI Generator
1252-
Ref: https://openapi-generator.tech
1251+
"""NOTE: This class is auto generated by OpenAPI JSON Schema Generator
1252+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
12531253

12541254
Do not edit the class manually.
12551255
"""

modules/openapi-json-schema-generator/src/main/resources/python/configuration.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ PYTHON_KEYWORD_TO_JSON_SCHEMA_KEYWORD = {
4848
}
4949

5050
class Configuration(object):
51-
"""NOTE: This class is auto generated by OpenAPI Generator
51+
"""NOTE: This class is auto generated by OpenAPI JSON Schema Generator
5252

53-
Ref: https://openapi-generator.tech
53+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
5454
Do not edit the class manually.
5555

5656
:param host: Base url

modules/openapi-json-schema-generator/src/main/resources/python/model_templates/schema_composed_or_anytype.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ class {{name.getCamelCaseName}}(
1111
{{/if}}
1212
):
1313
{{#if componentModule}}
14-
"""NOTE: This class is auto generated by OpenAPI Generator.
15-
Ref: https://openapi-generator.tech
14+
"""NOTE: This class is auto generated by OpenAPI JSON Schema Generator.
15+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1616

1717
Do not edit the class manually.
1818
{{#if description}}

modules/openapi-json-schema-generator/src/main/resources/python/model_templates/schema_dict.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ class {{name.getCamelCaseName}}(
44
schemas.DictSchema
55
):
66
{{#if componentModule}}
7-
"""NOTE: This class is auto generated by OpenAPI Generator.
8-
Ref: https://openapi-generator.tech
7+
"""NOTE: This class is auto generated by OpenAPI JSON Schema Generator.
8+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
99

1010
Do not edit the class manually.
1111
{{#if description}}

modules/openapi-json-schema-generator/src/main/resources/python/model_templates/schema_list.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ class {{name.getCamelCaseName}}(
44
schemas.ListSchema
55
):
66
{{#if componentModule}}
7-
"""NOTE: This class is auto generated by OpenAPI Generator.
8-
Ref: https://openapi-generator.tech
7+
"""NOTE: This class is auto generated by OpenAPI JSON Schema Generator.
8+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
99

1010
Do not edit the class manually.
1111
{{#if description}}

modules/openapi-json-schema-generator/src/main/resources/python/model_templates/schema_simple.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ class {{name.getCamelCaseName}}(
44
{{> model_templates/xbase_schema }}
55
):
66
{{#if componentModule}}
7-
"""NOTE: This class is auto generated by OpenAPI Generator.
8-
Ref: https://openapi-generator.tech
7+
"""NOTE: This class is auto generated by OpenAPI JSON Schema Generator.
8+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
99

1010
Do not edit the class manually.
1111
{{#if description}}

modules/openapi-json-schema-generator/src/main/resources/python/partial_header.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
{{#if infoEmail}}
1414
Contact: {{{infoEmail}}}
1515
{{/if}}
16-
Generated by: https://openapi-generator.tech
16+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1717
"""

modules/openapi-json-schema-generator/src/main/resources/python/setup.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ setup(
2222
name=NAME,
2323
version=VERSION,
2424
description="{{appName}}",
25-
author="{{#if infoName}}{{infoName}}{{/if}}{{#unless infoName}}OpenAPI Generator community{{/unless}}",
25+
author="{{#if infoName}}{{infoName}}{{/if}}{{#unless infoName}}OpenAPI JSON Schema Generator community{{/unless}}",
2626
author_email="{{#if infoEmail}}{{infoEmail}}{{/if}}{{#unless infoEmail}}[email protected]{{/unless}}",
2727
url="{{#if packageUrl}}{{packageUrl}}{{/if}}",
28-
keywords=["OpenAPI", "OpenAPI-Generator", "{{{appName}}}"],
28+
keywords=["OpenAPI", "OpenAPI-JSON-Schema-Generator", "{{{appName}}}"],
2929
python_requires="{{{generatorLanguageVersion}}}",
3030
install_requires=REQUIRES,
3131
packages=find_packages(exclude=["test", "tests"]),

modules/openapi-json-schema-generator/src/main/resources/python/signing.handlebars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ class HttpSigningConfiguration(object):
6565
and optionally the body of the HTTP request, then signing the hash value using
6666
a private key. The 'Authorization' header is added to outbound HTTP requests.
6767

68-
NOTE: This class is auto generated by OpenAPI Generator
68+
NOTE: This class is auto generated by OpenAPI JSON Schema Generator
6969

70-
Ref: https://openapi-generator.tech
70+
Ref: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
7171
Do not edit the class manually.
7272

7373
:param key_id: A string value specifying the identifier of the cryptographic key,

samples/openapi3/client/3_0_3_unit_test/python/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
from setuptools import setup, find_packages # noqa: H301
@@ -33,10 +33,10 @@
3333
name=NAME,
3434
version=VERSION,
3535
description="openapi 3.0.3 sample spec",
36-
author="OpenAPI Generator community",
36+
author="OpenAPI JSON Schema Generator community",
3737
author_email="[email protected]",
3838
url="",
39-
keywords=["OpenAPI", "OpenAPI-Generator", "openapi 3.0.3 sample spec"],
39+
keywords=["OpenAPI", "OpenAPI-JSON-Schema-Generator", "openapi 3.0.3 sample spec"],
4040
python_requires=">=3.7",
4141
install_requires=REQUIRES,
4242
packages=find_packages(exclude=["test", "tests"]),

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test__not.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_additionalproperties_allows_a_schema_which_should_validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_additionalproperties_are_allowed_by_default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_additionalproperties_can_exist_by_itself.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_additionalproperties_should_not_look_in_applicators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_allof.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_allof_combined_with_anyof_oneof.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_allof_simple_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_allof_with_base_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_allof_with_one_empty_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_allof_with_the_first_empty_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

samples/openapi3/client/3_0_3_unit_test/python/test/components/schema/test_allof_with_the_last_empty_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
77
88
The version of the OpenAPI document: 0.0.1
9-
Generated by: https://openapi-generator.tech
9+
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
1010
"""
1111

1212
import unittest

0 commit comments

Comments
 (0)