Skip to content

Commit 65d942d

Browse files
Update README (Azure#24299)
1 parent 506ee52 commit 65d942d

File tree

1 file changed

+4
-4
lines changed
  • sdk/schemaregistry/Azure.Data.SchemaRegistry

1 file changed

+4
-4
lines changed

sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ A schema has 6 components:
5656
- Group Name: The name of the group of schemas in the Schema Registry instance.
5757
- Schema Name: The name of the schema.
5858
- Schema ID: The ID assigned by the Schema Registry instance for the schema.
59-
- Serialization Type: The format used for serialization of the schema. For example, Avro.
59+
- Schema Format: The format used for serialization of the schema. For example, Avro.
6060
- Schema Content: The string representation of the schema.
6161
- Schema Version: The version assigned to the schema in the Schema Registry instance.
6262

@@ -86,7 +86,7 @@ The following shows examples of what is available through the `SchemaRegistryCli
8686

8787
### Register a schema
8888

89-
Register a schema to be stored in the Azure Schema Registry. When registering a schema, the `SchemaProperties` will be cached in the `SchemaRegistryClient` instance, so that any subsequent calls to `GetSchemaId` and `GetSchema` corresponding to the same schema can use the cached value rather than going to the service.
89+
Register a schema to be stored in the Azure Schema Registry.
9090

9191
```C# Snippet:SchemaRegistryRegisterSchema
9292
string name = "employeeSample";
@@ -108,7 +108,7 @@ Response<SchemaProperties> schemaProperties = client.RegisterSchema(groupName, n
108108

109109
### Retrieve a schema ID
110110

111-
Retrieve a previously registered schema ID from the Azure Schema Registry. When looking up the schema Id, the `SchemaProperties` will be cached in the `SchemaRegistryClient` instance, so that subsequent requests for this schema do not need to go the service.
111+
Retrieve a previously registered schema ID from the Azure Schema Registry.
112112

113113
```C# Snippet:SchemaRegistryRetrieveSchemaId
114114
string name = "employeeSample";
@@ -131,7 +131,7 @@ string schemaId = schemaProperties.Id;
131131

132132
### Retrieve a schema
133133

134-
Retrieve a previously registered schema's content from the Azure Schema Registry. When looking up the schema content by schema ID, the `SchemaProperties` will be cached in the `SchemaRegistryClient` instance so that subsequent requests for this schema ID do not need to go the service.
134+
Retrieve a previously registered schema's content from the Azure Schema Registry.
135135

136136
```C# Snippet:SchemaRegistryRetrieveSchema
137137
SchemaRegistrySchema schema = client.GetSchema(schemaId);

0 commit comments

Comments
 (0)