add authentication with zitadel
Some checks failed
Build and Publish / build-release (push) Failing after 1m49s

This commit is contained in:
2026-05-04 15:52:09 -05:00
parent 636d456c24
commit 44d89014fd
14 changed files with 614 additions and 12 deletions

View File

@@ -230,8 +230,16 @@ defmodule PolicyServiceWeb.Schemas.Policy do
coverage_amount: %Schema{type: :number, example: 100_000},
coverage_years: %Schema{type: :integer, example: 10},
smoker: %Schema{type: :boolean, example: false},
medications: %Schema{type: :array, items: %Schema{type: :string}, example: ["Aspirin", "Lisinopril"]},
surgeries: %Schema{type: :array, items: %Schema{type: :string}, example: ["Appendectomy, 2015"]},
medications: %Schema{
type: :array,
items: %Schema{type: :string},
example: ["Aspirin", "Lisinopril"]
},
surgeries: %Schema{
type: :array,
items: %Schema{type: :string},
example: ["Appendectomy, 2015"]
},
weight: %Schema{type: :number, example: 70},
height: %Schema{type: :number, example: 175}
}