Skip to content

Commit

Permalink
deps(swagger-core): update schema for byte[]
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback committed May 24, 2024
1 parent 98e6f4a commit c60ebbf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"f" : 1.1,
"i" : 0,
"n" : {
"nba" : [ "YmFzZTY0LWV4YW1wbGU=" ],
"nba" : "YmFzZTY0LWV4YW1wbGU=",
"nc" : {
"cyclic" : { }
},
Expand All @@ -54,11 +54,8 @@
"type" : "object",
"properties" : {
"nba" : {
"type" : "array",
"items" : {
"type" : "string",
"format" : "byte"
}
"type" : "string",
"format" : "byte"
},
"nc" : {
"$ref" : "#/components/schemas/io.github.springwolf.core.asyncapi.components.DefaultJsonComponentsServiceTest$ComplexFoo$Nested$Cyclic"
Expand Down Expand Up @@ -92,7 +89,7 @@
}
},
"examples" : [ {
"nba" : [ "YmFzZTY0LWV4YW1wbGU=" ],
"nba" : "YmFzZTY0LWV4YW1wbGU=",
"nc" : {
"cyclic" : { }
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,8 @@
"type" : "string",
"properties" : {
"nba" : {
"type" : "array",
"items" : {
"type" : "string",
"format" : "byte"
}
"type" : "string",
"format" : "byte"
},
"nc" : {
"$ref" : "#/components/schemas/io.github.springwolf.core.asyncapi.components.DefaultXmlComponentsServiceTest$ComplexFoo$Nested$Cyclic"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,14 @@
"type" : "string"
}
},
"examples" : [ "b: true\nd: 1.1\ndt: 2015-07-20T15:49:04-07:00\nf: 1.1\ni: 0\n\"n\":\n nba:\n - YmFzZTY0LWV4YW1wbGU=\n nc:\n cyclic: {}\n nli:\n - 0\n nmfm: {}\n ns: string\n nsm:\n - s: string\n nu: 3fa85f64-5717-4562-b3fc-2c963f66afa6\ns: string\n" ]
"examples" : [ "b: true\nd: 1.1\ndt: 2015-07-20T15:49:04-07:00\nf: 1.1\ni: 0\n\"n\":\n nba: YmFzZTY0LWV4YW1wbGU=\n nc:\n cyclic: {}\n nli:\n - 0\n nmfm: {}\n ns: string\n nsm:\n - s: string\n nu: 3fa85f64-5717-4562-b3fc-2c963f66afa6\ns: string\n" ]
},
"io.github.springwolf.core.asyncapi.components.DefaultYamlComponentsServiceTest$ComplexFoo$Nested" : {
"type" : "string",
"properties" : {
"nba" : {
"type" : "array",
"items" : {
"type" : "string",
"format" : "byte"
}
"type" : "string",
"format" : "byte"
},
"nc" : {
"$ref" : "#/components/schemas/io.github.springwolf.core.asyncapi.components.DefaultYamlComponentsServiceTest$ComplexFoo$Nested$Cyclic"
Expand Down Expand Up @@ -71,7 +68,7 @@
"format" : "uuid"
}
},
"examples" : [ "nba:\n- YmFzZTY0LWV4YW1wbGU=\nnc:\n cyclic: {}\nnli:\n- 0\nnmfm: {}\nns: string\nnsm:\n- s: string\nnu: 3fa85f64-5717-4562-b3fc-2c963f66afa6\n" ]
"examples" : [ "nba: YmFzZTY0LWV4YW1wbGU=\nnc:\n cyclic: {}\nnli:\n- 0\nnmfm: {}\nns: string\nnsm:\n- s: string\nnu: 3fa85f64-5717-4562-b3fc-2c963f66afa6\n" ]
},
"io.github.springwolf.core.asyncapi.components.DefaultYamlComponentsServiceTest$ComplexFoo$Nested$Cyclic" : {
"type" : "string",
Expand Down

0 comments on commit c60ebbf

Please sign in to comment.