diff --git a/kong/db/schema/entities/key_sets.lua b/kong/db/schema/entities/key_sets.lua index 9820ca138fd..095bda1790d 100644 --- a/kong/db/schema/entities/key_sets.lua +++ b/kong/db/schema/entities/key_sets.lua @@ -15,7 +15,7 @@ return { { name = { type = "string", - description = "The name to associate with the given key-set.", + description = "The name to associate with the given Key Set.", required = false, unique = true, }, diff --git a/kong/db/schema/entities/keys.lua b/kong/db/schema/entities/keys.lua index 755c7eedb1f..16be2ccc230 100644 --- a/kong/db/schema/entities/keys.lua +++ b/kong/db/schema/entities/keys.lua @@ -18,7 +18,7 @@ return { { set = { type = "foreign", - description = "The id of the key-set with which to associate the key.", + description = "The id of the Key Set with which to associate the key.", required = false, reference = "key_sets", on_delete = "cascade",