Skip to content

Commit

Permalink
fix getBlobSidecars response title (#7551)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenr authored Oct 6, 2023
1 parent f5dca23 commit 9ac49f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/GetBlobsResponse"
"$ref" : "#/components/schemas/GetBlobSidecarsResponse"
}
},
"application/octet-stream" : {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title" : "GetBlobsResponse",
"title" : "GetBlobSidecarsResponse",
"type" : "object",
"required" : [ "data" ],
"properties" : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private static SerializableTypeDefinition<List<BlobSidecar>> getResponseType(
.getBlobSidecarSchema()
.getJsonTypeDefinition();
return SerializableTypeDefinition.<List<BlobSidecar>>object()
.name("GetBlobsResponse")
.name("GetBlobSidecarsResponse")
.withField("data", listOf(blobSidecarType), Function.identity())
.build();
}
Expand Down

0 comments on commit 9ac49f5

Please sign in to comment.