Skip to content

Commit

Permalink
adding deprecated boolean to SchemaRegistry::Property (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrias authored Sep 18, 2024
1 parent 78d024f commit 2a75d30
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/schema_registry/property.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class Property < T::Struct
const :description, T.nilable(String), default: nil
const :resolver, T.nilable(T::Hash[Symbol, String]), default: nil
const :resolvable, T::Boolean, default: false
const :deprecated, T::Boolean, default: false
const :deprecated_on, T.nilable(Date), default: nil
const :example, T.nilable(ValueType), default: nil
const :enum_values, T.nilable(T::Array[String]), default: []
Expand Down

0 comments on commit 2a75d30

Please sign in to comment.