Skip to content

Commit

Permalink
[strimzi#434] fix: docs edited after review
Browse files Browse the repository at this point in the history
Signed-off-by: ilkerkocatepe <[email protected]>
  • Loading branch information
ilkerkocatepe committed Nov 19, 2024
1 parent 9671b29 commit 3f0f72e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0cbdd06b4a84f4dcdecb43108eaa604926146f8889440a3e837422fd4b586980
d79befc630208ffc467595a5c413954da1cb03e6212b211257c6db29e5c2ad46
5 changes: 5 additions & 0 deletions documentation/book/api/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2639,6 +2639,11 @@ Retrieves the metadata about a given topic.
| Topic metadata
| <<TopicMetadata>>


| 404
| The specified topic was not found.
| <<Error>>

|===

===== Samples
Expand Down
18 changes: 18 additions & 0 deletions src/main/resources/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,24 @@
}
}
}
},
"404": {
"description": "The specified topic was not found.",
"content": {
"application/vnd.kafka.v2+json": {
"schema": {
"$ref": "#/components/schemas/Error"
},
"examples": {
"response": {
"value": {
"error_code": 404,
"message": "The specified topic was not found."
}
}
}
}
}
}
}
},
Expand Down

0 comments on commit 3f0f72e

Please sign in to comment.