com.github.erosb.jsonsKema.False.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-sKema Show documentation
Show all versions of json-sKema Show documentation
JSON Schema Parser and Validator
package com.github.erosb.jsonsKema
data class FalseSchema(override val location: SourceLocation) : Schema(location) {
override fun accept(visitor: SchemaVisitor
) = visitor.visitFalseSchema(this)
}
data class FalseValidationFailure(
override val schema: FalseSchema,
override val instance: IJsonValue
) : ValidationFailure("false schema always fails", schema, instance, Keyword.FALSE)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy