Packages

  • package root
    Definition Classes
    root
  • package endpoints
    Definition Classes
    root
  • package algebra

    Definition Classes
    endpoints
  • trait JsonSchemas extends TuplesSchemas with PartialInvariantFunctorSyntax

    An algebra interface for describing algebraic data types.

    An algebra interface for describing algebraic data types. Such descriptions can be interpreted to produce a JSON schema of the data type, a JSON encoder, a JSON decoder, etc.

    A description contains the fields of a case class and their type, and the constructor names of a sealed trait.

    For instance, consider the following record type:

    case class User(name: String, age: Int)

    Its description is the following:

    object User {
      implicit val schema: JsonSchema[User] = (
        field[String]("name") zip
        field[Int]("age")
      ).xmap((User.apply _).tupled)(Function.unlift(User.unapply))
    }

    The description says that the record type has two fields, the first one has type String and is named “name”, and the second one has type Int and name “age”.

    To describe sum types you have to explicitly “tag” each alternative:

    sealed trait Shape
    case class Circle(radius: Double) extends Shape
    case class Rectangle(width: Double, height: Double) extends Shape
    
    object Shape {
      implicit val schema: JsonSchema[Shape] = {
        val circleSchema = field[Double]("radius").xmap(Circle)(Function.unlift(Circle.unapply))
        val rectangleSchema = (
          field[Double]("width") zip
          field[Double]("height")
        ).xmap((Rectangle.apply _).tupled)(Function.unlift(Rectangle.unapply))
        (circleSchema.tagged("Circle") orElse rectangleSchema.tagged("Rectangle"))
          .xmap[Shape] {
            case Left(circle) => circle
            case Right(rect)  => rect
          } {
            case c: Circle    => Left(c)
            case r: Rectangle => Right(r)
          }
      }
    }
    Definition Classes
    algebra
  • Enum
  • EnumOps
  • InvariantFunctorSyntax
  • JsonSchema
  • JsonSchemaDocumentationOps
  • JsonSchemaOps
  • PartialInvariantFunctorSyntax
  • Record
  • RecordOps
  • Tagged
  • TaggedOps
t

endpoints.algebra.JsonSchemas

JsonSchemaDocumentationOps

sealed trait JsonSchemaDocumentationOps[A] extends AnyRef

Documentation related methods for annotating schemas. Encoder and decoder interpreters ignore this information.

Source
JsonSchemas.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsonSchemaDocumentationOps
  2. AnyRef
  3. Any
Implicitly
  1. by StringFormat
  2. by Ensuring
  3. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Self <: JsonSchema[A]

Abstract Value Members

  1. abstract def withDescription(description: String): Self

    Include a description of what this schema represents.

    Include a description of what this schema represents. Documentation interpreters can show this description. Encoder and decoder interpreters ignore this description.

    description

    information about the values described by the schema

  2. abstract def withExample(example: A): Self

    Include an example of value in this schema.

    Include an example of value in this schema. Documentation interpreters can show this example value. Encoder and decoder interpreters ignore this value.

    example

    Example value to attach to the schema

  3. abstract def withTitle(title: String): Self

    Include a title for the schema.

    Include a title for the schema. Documentation interpreters can show this title. Encoder and decoder interpreters ignore the title.

    title

    short title to attach to the schema