Packages

final case class Predef[T](schema: Schema[T]) extends AnyVal with Product with Serializable

The idea behind Predef is a continuation of the idea about exposing schemas that was found in implicit scope as ref. Namely, if schema is derived - it will be defined in-place inside of a json-schema, but if it's implicitly available - going to be a ref.

So Predef changes it by adding another class of implicitly defined schemas which won't become a ref

Linear Supertypes
Serializable, Product, Equals, AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Predef
  2. Serializable
  3. Product
  4. Equals
  5. AnyVal
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Predef(schema: Schema[T])

Value Members

  1. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val schema: Schema[T]