sealed case class object[T](fields: Set[Field[_]]) extends Schema[T] with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- object
- Serializable
- Serializable
- Product
- Equals
- Schema
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- def canEqual(that: Any): Boolean
-
def
description: Option[String]
- Definition Classes
- Schema
-
def
discriminationKey: Option[String]
- Definition Classes
- Schema
- def dropField(pred: (Field[_]) ⇒ Boolean): object[T]
-
def
duplicate(description: Option[String] = this._description, title: Option[String] = this._title, discriminationKey: Option[String] = this._discriminationKey): Self
- Definition Classes
- Schema
- def equals(obj: Any): Boolean
- val fields: Set[Field[_]]
- def free: object[T] with Free
- def jsonType: String
- def mkCopy(): object[T]
-
def
title: Option[String]
- Definition Classes
- Schema
-
def
toDefinition[TT >: T](sig: String): def[TT]
- Definition Classes
- Schema
-
def
toString(): String
- Definition Classes
- object → AnyRef → Any
-
def
validations: Seq[Def[_, _]]
- Definition Classes
- Schema
-
def
withDescription(x: String): Self
- Definition Classes
- Schema
-
def
withDiscriminationKey(x: String): Self
- Definition Classes
- Schema
-
def
withExtraFrom(x: Schema[_]): Self
- Definition Classes
- Schema
- def withField(f: Field[_]): object[T]
- def withFieldsUpdated(pf: PartialFunction[Field[_], Field[_]]): object[T]
-
def
withTitle(x: String): Self
- Definition Classes
- Schema
-
def
withValidation[TT >: T, B](v: Def[B, _], vs: Def[B, _]*)(implicit bound: Magnet[TT, B]): Self
- Definition Classes
- Schema