Current section
Files
Jump to
Current section
Files
lib/example/person.ex
defmodule MapSchema.Examples.Person do
@moduledoc false
use MapSchema,
schema: %{
"name" => :string,
"surname" => :string,
"country" => :string,
"age" => :integer,
"contact" => %{
"email" => :string,
"phone" => :string,
"others" => :any
}
}
end