From 8e98c618fb35a006002d968f471214ef3381f84a Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Thu, 8 Mar 2018 11:37:52 -0500 Subject: [PATCH] Polished 'Schema Registry Server' section --- .../asciidoc/spring-cloud-stream-overview.adoc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/spring-cloud-stream-core-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc b/spring-cloud-stream-core-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc index 2de3220b9..0ff0aadbf 100644 --- a/spring-cloud-stream-core-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc +++ b/spring-cloud-stream-core-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc @@ -1920,7 +1920,7 @@ public class SchemaRegistryServerApplication { The Schema Registry Server API consists of the following operations: -===== `POST /` +`POST /` Register a new schema. @@ -1938,7 +1938,7 @@ Response is a schema object in JSON format, with the following fields: * `version` the schema version; * `definition` the schema definition. -===== `GET /{subject}/{format}/{version}` +`GET /{subject}/{format}/{version}` Retrieve an existing schema by its subject, format and version. @@ -1950,7 +1950,7 @@ Response is a schema object in JSON format, with the following fields: * `version` the schema version; * `definition` the schema definition. -===== `GET /{subject}/{format}` +`GET /{subject}/{format}` Retrieve a list of existing schema by its subject and format. @@ -1962,7 +1962,7 @@ Response is a list of schemas with each schema object in JSON format, with the f * `version` the schema version; * `definition` the schema definition. -===== `GET /schemas/{id}` +`GET /schemas/{id}` Retrieve an existing schema by its id. @@ -1974,15 +1974,15 @@ Response is a schema object in JSON format, with the following fields: * `version` the schema version; * `definition` the schema definition. -===== `DELETE /{subject}/{format}/{version}` +`DELETE /{subject}/{format}/{version}` Delete an existing schema by its subject, format and version. -===== `DELETE /schemas/{id}` +`DELETE /schemas/{id}` Delete an existing schema by its id. -===== `DELETE /{subject}` +`DELETE /{subject}` Delete existing schemas by their subject.