commonMain.io.github.optimumcode.json.schema.SchemaOption.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-validator Show documentation
Show all versions of json-schema-validator Show documentation
Multiplatform Kotlin implementation of JSON schema validator
package io.github.optimumcode.json.schema
import kotlin.jvm.JvmField
import kotlin.reflect.KClass
public class SchemaOption private constructor(internal val type: KClass) {
public companion object {
@JvmField
public val FORMAT_BEHAVIOR_OPTION: SchemaOption = SchemaOption(FormatBehavior::class)
}
}