View Source JsonSchema.Parser.ParserWarning (json_schema v0.5.0)

Represents a warning generated while parsing a JSON schema object.

Link to this section Summary

Link to this section Types

@type t() :: %JsonSchema.Parser.ParserWarning{
  identifier: JsonSchema.Types.typeIdentifier(),
  message: String.t(),
  warning_type: warning_type()
}
@type warning_type() :: atom()

Link to this section Functions

Link to this function

new(identifier, warning_type, message)

View Source

Constructs a ParserWarning.