The `NotarizedApplication` plugin sits at the center of the entire Kompendium setup. It is a pre-requisite to installing any other Kompendium plugins. # Configuration Very little configuration is needed for a basic documentation setup, but several configuration options are available that allow you to modify Kompendium to fit your needs. ## Spec This is where you will define the server metadata that lives outside the scope of any specific route. For full information, you can inspect the `OpenApiSpec` data class, and of course reference [OpenAPI spec](https://spec.openapis.org/oas/v3.1.0) itself. > ⚠️ Please note, the `path` field of the `OpenApiSpec` is intended to be filled in by `NotarizedRoute` plugin > definitions. Writing custom paths manually could lead to unexpected behavior ## Custom Routing For public facing APIs, having the default endpoint exposed at `/openapi.json` is totally fine. However, if you need more granular control over the route that exposes the generated schema, you can modify the `openApiJson` config value. For example, if we want to hide our schema behind a basic auth check with a custom json encoder, we could do the following ```kotlin private fun Application.mainModule() { // Install content negotiation, auth, etc... install(NotarizedApplication()) { // ... specRoute = { spec, routing -> routing { authenticate("basic") { route("/openapi.json") { get { call.response.headers.append("Content-Type", "application/json") call.respondText { CustomJsonEncoder.encodeToString(spec) } } } } } } openApiJson = { authenticate("basic") { route("/openapi.json") { get { call.respond( HttpStatusCode.OK, this@route.application.attributes[KompendiumAttributes.openApiSpec] ) } } } } } } ``` ## Custom Types Kompendium is _really_ good at converting simple scalar and complex objects into JsonSchema compliant specs. However, there is a subset of values that cause it trouble. These are most commonly classes that produce "complex scalars", such as dates and times, along with object representations of scalars such as `BigInteger`. In situations like this, you will need to define a map of custom types to JsonSchema definitions that Kompendium can use to short-circuit its type analysis. For example, say we would like to serialize `kotlinx.datetime.Instant` entities as a field in our response objects. We would need to add it as a custom type. ```kotlin private fun Application.mainModule() { // ... install(NotarizedApplication()) { spec = baseSpec customTypes = mapOf( typeOf() to TypeDefinition(type = "string", format = "date-time") ) } } ``` Doing this will save it in a cache that our `NotarizedRoute` plugin definitions will check from prior to attempting to perform type inspection. This means that we only need to define our custom type once, and then Kompendium will reuse it across the entire application. > While intended for custom scalars, there is nothing stopping you from leveraging custom types to circumvent type > analysis > on any class you choose. If you have an alternative method of generating JsonSchema definitions, you could put them > all > in this map and effectively prevent Kompendium from having to do any reflection ## Schema Configurator Out of the box, Kompendium supports KotlinX serialization... however, in order to allow for users of other serialization libraries to use Kompendium, we have provided a `SchemaConfigurator` interface that allows you to configure how Kompendium will generate schema definitions. For an example of the `SchemaConfigurator` in action, please see the `KotlinxSchemaConfigurator`. This will give you a good idea of the additional functionality it can add based on your own serialization needs.