Skip to content

Commit 1686d58

Browse files
authored
Merge branch 'main' into fix-http-response-code
2 parents d5677f8 + fde8a51 commit 1686d58

File tree

1 file changed

+4
-4
lines changed
  • documentation/developer-guide/modules/tooling-guide/pages

1 file changed

+4
-4
lines changed

documentation/developer-guide/modules/tooling-guide/pages/samm-cli.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ For the generated OpenAPI specification, the following mapping would apply:
364364
"openapi" : "3.0.3",
365365
"info" : {
366366
"title" : "TestAspect", // <2> <3>
367-
"version" : "v2" // <1>
367+
"version" : "v1" // <1>
368368
}
369369
}
370370
----
@@ -379,10 +379,10 @@ The version information as described above is also used in the URL definitions o
379379
----
380380
{
381381
"servers" : [ {
382-
"url" : "http://example.com/api/v2", // <1>
382+
"url" : "http://example.com/api/v1", // <1>
383383
"variables" : {
384384
"api-version" : {
385-
"default" : "v2" // <1>
385+
"default" : "v1" // <1>
386386
}
387387
}
388388
} ]
@@ -766,7 +766,7 @@ For the generated AsyncAPI specification, the following mapping would apply:
766766
"asyncapi" : "3.0.0",
767767
"info" : {
768768
"title" : "My Movement Aspect MQTT API", // <2>
769-
"version" : "v2", // <1>
769+
"version" : "v1", // <1>
770770
"description" : "Aspect for movement information" // <3>
771771
}
772772
}

0 commit comments

Comments
 (0)