Schema

Companion:
class
trait Product
trait Mirror
class Object
trait Matchable
class Any
Schema.type

Type members

Classlikes

case class SName(fullName: String, typeParameterShortNames: List[String])
Companion:
object
object SName
Companion:
class

Annotations which are used during automatic schema derivation, or semi-automatic schema derivation using Schema.derived.

Annotations which are used during automatic schema derivation, or semi-automatic schema derivation using Schema.derived.

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete methods

def binary[T]: Schema[T]

Creates a schema for type T, where the low-level representation is binary.

Creates a schema for type T, where the low-level representation is binary.

def string[T]: Schema[T]

Creates a schema for type T, where the low-level representation is a String.

Creates a schema for type T, where the low-level representation is a String.

def wrapWithSingleFieldProduct[T](schema: Schema[T], fieldName: FieldName): Schema[T]

Wraps the given schema with a single-field product, where fieldName maps to schema.

Wraps the given schema with a single-field product, where fieldName maps to schema.

The resulting schema has no name.

Useful when generating one-of schemas for coproducts, where to discriminate between child types a wrapper product is used. To automatically derive such a schema for a sealed hierarchy, see Schema.oneOfWrapped.

def wrapWithSingleFieldProduct[T](schema: Schema[T])(implicit conf: Configuration): Schema[T]

Wraps the given schema with a single-field product, where a field computed using the implicit Configuration maps to schema.

Wraps the given schema with a single-field product, where a field computed using the implicit Configuration maps to schema.

The resulting schema has no name.

Useful when generating one-of schemas for coproducts, where to discriminate between child types a wrapper product is used. To automatically derive such a schema for a sealed hierarchy, see Schema.oneOfWrapped.

Inherited methods

inline def derived[T](using genericDerivationConfig: Configuration, m: Of[T]): Schema[T]
inline def derivedEnumeration[T](encode: Option[T => Any], schemaType: SchemaType[T], default: Option[T]): Schema[T]

Creates a schema for an enumeration, where the validator is derived using sttp.tapir.Validator.derivedEnumeration. This requires that all subtypes of the sealed hierarchy T must be objects.

Creates a schema for an enumeration, where the validator is derived using sttp.tapir.Validator.derivedEnumeration. This requires that all subtypes of the sealed hierarchy T must be objects.

Value parameters:
encode

Specify how values of this type can be encoded to a raw value (typically a String; the raw form should correspond with schemaType). This encoding will be used when generating documentation.

schemaType

The low-level representation of the enumeration. Defaults to a string.

Inherited from:
SchemaCompanionMacros
inline def oneOfUsingField[E, V](inline extractor: E => V, asString: V => String)(mapping: (V, Schema[_])*)(implicit conf: Configuration, discriminatorSchema: Schema[V]): Schema[E]

Create a coproduct schema (e.g. for a sealed trait), where the value of the discriminator between child types is a read of a field of the base type. The field, if not yet present, is added to each child schema.

Create a coproduct schema (e.g. for a sealed trait), where the value of the discriminator between child types is a read of a field of the base type. The field, if not yet present, is added to each child schema.

The schemas of the child types have to be provided explicitly with their value mappings in mapping.

Note that if the discriminator value is some transformation of the child's type name (obtained using the implicit Configuration), the coproduct schema can be derived automatically or semi-automatically.

Value parameters:
discriminatorSchema

The schema that is used when adding the discriminator as a field to child schemas (if it's not yet in the schema).

Inherited from:
SchemaCompanionMacros
inline def oneOfWrapped[E](implicit conf: Configuration): Schema[E]

Create a coproduct schema for an enum, sealed trait or sealed abstract class, where to discriminate between child types a wrapper product is used. The name of the sole field in this product corresponds to the type's name, transformed using the implicit Configuration.

Create a coproduct schema for an enum, sealed trait or sealed abstract class, where to discriminate between child types a wrapper product is used. The name of the sole field in this product corresponds to the type's name, transformed using the implicit Configuration.

See also Schema.wrapWithSingleFieldProduct, which creates the wrapper product given a schema.

Inherited from:
SchemaCompanionMacros
inline def schemaForMap[K, V : Schema](keyToString: K => String): Schema[Map[K, V]]

Create a schema for a map with arbitrary keys. The schema for the keys (Schema[K]) should be a string (that is, the schema type should be sttp.tapir.SchemaType.SString), however this cannot be verified at compile-time and is not verified at run-time.

Create a schema for a map with arbitrary keys. The schema for the keys (Schema[K]) should be a string (that is, the schema type should be sttp.tapir.SchemaType.SString), however this cannot be verified at compile-time and is not verified at run-time.

The given keyToString conversion function is used during validation.

If you'd like this schema to be available as an implicit for a given type of keys, create an custom implicit, e.g.:

case class MyKey(value: String) extends AnyVal
implicit val schemaForMyMap = Schema.schemaForMap[MyKey, MyValue](_.value)
Inherited from:
SchemaCompanionMacros

Concrete fields

Implicits

Implicits

implicit def schemaForArray[T : Schema]: Schema[Array[T]]
implicit val schemaForBigDecimal: Schema[BigDecimal]
implicit val schemaForBigInt: Schema[BigInt]
implicit val schemaForBoolean: Schema[Boolean]
implicit val schemaForByte: Schema[Byte]
implicit val schemaForByteArray: Schema[Array[Byte]]
implicit val schemaForByteBuffer: Schema[ByteBuffer]
implicit val schemaForDate: Schema[Date]
implicit val schemaForDouble: Schema[Double]
implicit def schemaForEither[A, B](implicit sa: Schema[A], sb: Schema[B]): Schema[Either[A, B]]
implicit val schemaForFloat: Schema[Float]
implicit val schemaForInputStream: Schema[InputStream]
implicit val schemaForInstant: Schema[Instant]
implicit val schemaForInt: Schema[Int]
implicit def schemaForIterable[T : Schema, C <: (Iterable)]: Schema[C[T]]
implicit val schemaForJBigDecimal: Schema[BigDecimal]
implicit val schemaForJBigInteger: Schema[BigInteger]
implicit val schemaForJavaDuration: Schema[Duration]
implicit val schemaForLocalDate: Schema[LocalDate]
implicit val schemaForLocalDateTime: Schema[LocalDateTime]
implicit val schemaForLocalTime: Schema[LocalTime]
implicit val schemaForLong: Schema[Long]
implicit val schemaForOffsetDateTime: Schema[OffsetDateTime]
implicit val schemaForOffsetTime: Schema[OffsetTime]
implicit def schemaForOption[T : Schema]: Schema[Option[T]]
implicit def schemaForPart[T : Schema]: Schema[Part[T]]
implicit val schemaForScalaDuration: Schema[Duration]
implicit val schemaForShort: Schema[Short]
implicit val schemaForString: Schema[String]
implicit val schemaForUUID: Schema[UUID]
implicit val schemaForUnit: Schema[Unit]
implicit val schemaForZoneOffset: Schema[ZoneOffset]
implicit val schemaForZonedDateTime: Schema[ZonedDateTime]

Inherited implicits

implicit inline def derivedEnumerationValue[T <: Value]: Schema[T]

Create a schema for scala Enumeration and the Validator instance based on possible enumeration values

Create a schema for scala Enumeration and the Validator instance based on possible enumeration values

Inherited from:
SchemaCompanionMacros
implicit def derivedSchema[T](implicit derived: Derived[Schema[T]]): Schema[T]
Inherited from:
LowPrioritySchema
implicit inline def schemaForMap[V : Schema]: Schema[Map[String, V]]
Inherited from:
SchemaCompanionMacros