commonMain.io.github.optimumcode.json.schema.extension.ExternalLoadingContext.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.extension
import io.github.optimumcode.json.pointer.JsonPointer
public interface ExternalLoadingContext {
/**
* A JSON pointer to the current position in schema associated with currently processing element
*/
public val schemaPath: JsonPointer
}