commonMain.io.github.optimumcode.json.schema.internal.RefId.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.internal
import com.eygraber.uri.Uri
import kotlin.jvm.JvmInline
@JvmInline
internal value class RefId(val uri: Uri) {
val fragment: String
get() = uri.fragment ?: ""
}