You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ A schema has 6 components:
56
56
- Group Name: The name of the group of schemas in the Schema Registry instance.
57
57
- Schema Name: The name of the schema.
58
58
- 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.
60
60
- Schema Content: The string representation of the schema.
61
61
- Schema Version: The version assigned to the schema in the Schema Registry instance.
62
62
@@ -86,7 +86,7 @@ The following shows examples of what is available through the `SchemaRegistryCli
86
86
87
87
### Register a schema
88
88
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.
90
90
91
91
```C# Snippet:SchemaRegistryRegisterSchema
92
92
stringname="employeeSample";
@@ -108,7 +108,7 @@ Response<SchemaProperties> schemaProperties = client.RegisterSchema(groupName, n
108
108
109
109
### Retrieve a schema ID
110
110
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.
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.
0 commit comments