Skip to content

Commit

Permalink
Merge branch 'main' into 635-Allow-Customization-of-Error-Responses-i…
Browse files Browse the repository at this point in the history
…n-OpenAPI-Generator
  • Loading branch information
MelleD authored Aug 2, 2024
2 parents 05b6bb2 + fde8a51 commit 9ea3455
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ For the generated OpenAPI specification, the following mapping would apply:
"openapi" : "3.0.3",
"info" : {
"title" : "TestAspect", // <2> <3>
"version" : "v2" // <1>
"version" : "v1" // <1>
}
}
----
Expand All @@ -379,10 +379,10 @@ The version information as described above is also used in the URL definitions o
----
{
"servers" : [ {
"url" : "http://example.com/api/v2", // <1>
"url" : "http://example.com/api/v1", // <1>
"variables" : {
"api-version" : {
"default" : "v2" // <1>
"default" : "v1" // <1>
}
}
} ]
Expand Down Expand Up @@ -766,7 +766,7 @@ For the generated AsyncAPI specification, the following mapping would apply:
"asyncapi" : "3.0.0",
"info" : {
"title" : "My Movement Aspect MQTT API", // <2>
"version" : "v2", // <1>
"version" : "v1", // <1>
"description" : "Aspect for movement information" // <3>
}
}
Expand Down

0 comments on commit 9ea3455

Please sign in to comment.