All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.util.JsonSchemaCreator.kt Maven / Gradle / Ivy

There is a newer version: 5.31.0.0
Show newest version
package org.http4k.util

interface JsonSchemaCreator {
    fun toSchema(obj: IN, overrideDefinitionId: String? = null, refModelNamePrefix: String? = null): JsonSchema
}

data class JsonSchema(val node: NODE, val definitions: Set> = emptySet())

class IllegalSchemaException(message: String) : RuntimeException(message)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy