Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Using types to describe an API#

Sumit Rawal answered on May 24, 2023 Popularity 2/10 Helpfulness 1/10

Contents


More Related Answers

  • rest api description
  • what are api schemas
  • API Types
  • What is the role of Connector API?
  • Designing APIs with OAS
  • Learning new API definitions
  • Accessing the API#
  • rest api method types
  • how to represent a resource in api

  • Using types to describe an API#

    0

    Describing your API using types is not bleeding edge academic research stuff like you might have guessed. There are several libraries existing for it!

    Some of these are endpoints, rho included in http4s, and tapir. We will be using tapir in our implementation.

    Why did we pick the tapir library?

    We wanted to use something that allows us to generate a http4s server. This already narrowed down the options a bit.

    It should be able to generate API documentation, which nowadays means Swagger/OpenAPI support.

    It should support not only http4s but more options as well.

    Tapir meets all our requirements. The library is still pretty young and may be subject to breaking changes, so please keep this in mind when reading through the following part.

    The basics

    The tapir library assumes that you describe your API using the Endpoint type, which is more concretely defined as follows: Endpoint[I, E, O, S].

    • The type I defines the input given into the endpoint.

    • Type type E defines the error (or errors) that may be returned by the endpoint.

    • The type O defines the possible output of the endpoint.

    • The type S specifies the type of streams that are used for input and output.

    An endpoint can have attributes like name or description, which will be used in the generated documentation. You can also map input and output parameters into case classes.

    Please note that all mappings have to be bidirectional because tapir must be able to generate server and client code from it.

    Regarding the encoding and decoding of data, we will need our Circe codecs and additionally some schema definitions required by tapir. In concrete, we will need to define implicit SchemaFor[T] instances for each of our models.

    Tapir schema for Translation

    We will start with the Translation model.

    Popularity 2/10 Helpfulness 1/10 Language scala
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on May 24 2023
    Sumit Rawal
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.