Skip to content

Commit 4ed33ef

Browse files
committed
Update version example number
1 parent f6a566e commit 4ed33ef

File tree

1 file changed

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

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ Please consider the following model fragment, with the attention focused on the
344344

345345
[source,turtle,subs="attributes+,+quotes"]
346346
----
347-
@prefix : <urn:samm:{example-ns}.myapplication:2.0.0#> . # <1>
347+
@prefix : <urn:samm:{example-ns}.myapplication:1.0.0#> . # <1>
348348
@prefix samm: <{samm}> .
349349
350350
:Test a samm:Aspect; # <3>
@@ -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
} ]
@@ -744,7 +744,7 @@ Please consider the following model fragment, with the attention focused on the
744744

745745
[source,turtle,subs="attributes+,+quotes"]
746746
----
747-
@prefix : <urn:samm:{example-ns}.myapplication:2.0.0#> . # <1>
747+
@prefix : <urn:samm:{example-ns}.myapplication:1.0.0#> . # <1>
748748
@prefix samm: <{samm}> .
749749
750750
:Movement a samm:Aspect ; # <3>
@@ -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)