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: src/Confluent.SchemaRegistry/Rest/DataContracts/Schema.cs
+3-6
Original file line number
Diff line number
Diff line change
@@ -30,21 +30,18 @@ public class Schema : IComparable<Schema>, IEquatable<Schema>
30
30
#region API backwards-compatibility hack
31
31
32
32
/// <summary>
33
-
/// DEPRECATED. The subject the schema is registered against.
33
+
/// The subject the schema is registered against.
34
34
/// </summary>
35
-
[Obsolete("Included to maintain API backwards compatibility only. Use RegisteredSchema instead. This property will be removed in a future version of the library.")]
36
35
publicvirtualstringSubject{get;set;}
37
36
38
37
/// <summary>
39
-
/// DEPRECATED. The schema version.
38
+
/// The schema version.
40
39
/// </summary>
41
-
[Obsolete("Included to maintain API backwards compatibility only. Use RegisteredSchema instead. This property will be removed in a future version of the library.")]
42
40
publicvirtualintVersion{get;set;}
43
41
44
42
/// <summary>
45
-
/// DEPRECATED. Unique identifier of the schema.
43
+
/// Unique identifier of the schema.
46
44
/// </summary>
47
-
[Obsolete("Included to maintain API backwards compatibility only. Use RegisteredSchema instead. This property will be removed in a future version of the library.")]
0 commit comments