PhoenixSwagger.Schema.unique_items

You're seeing just the function unique_items, go back to PhoenixSwagger.Schema module for more information.
Link to this function

unique_items(model, unique?)

View Source

Boolean that when true, requires each item of an array schema to be unique.

Examples

iex> alias PhoenixSwagger.Schema
...> %Schema{type: :array}
...> |> Schema.unique_items(true)
%PhoenixSwagger.Schema{type: :array, uniqueItems: true}