View Source OpenAPI.Spec.Path.Header (OpenAPI Generator v0.1.0-rc.3)

Raw path header from the OpenAPI spec

Link to this section Summary

Link to this section Types

@type t() :: %OpenAPI.Spec.Path.Header{
  allow_empty_value: boolean(),
  allow_reserved: boolean(),
  content: %{optional(String.t()) => OpenAPI.Spec.Schema.Media.t()},
  deprecated: boolean(),
  description: String.t() | nil,
  example: any(),
  examples: %{optional(String.t()) => OpenAPI.Spec.Schema.Example.t()},
  explode: boolean(),
  required: boolean(),
  schema: OpenAPI.Spec.Schema.t() | OpenAPI.Spec.ref() | nil,
  style: String.t()
}