Files
kong--kong/spec/fixtures/custom_plugins/kong/plugins/reference-ca-cert/schema.lua
T
2026-07-13 12:32:21 +08:00

16 lines
365 B
Lua

return {
name = "reference-ca-cert",
fields = {
{
config = {
type = "record",
fields = {
{ pre_key = { type = "string", }, },
{ ca_certificates = { type = "array", required = true, elements = { type = "string", uuid = true, }, }, },
{ post_key = { type = "string", }, },
},
},
},
},
}