JsonSchema

class JsonSchema(val actual: ObjectNode, val schemaVersion: SchemaVersion = SchemaVersion.DRAFT_2020_12)

Constructors

Link copied to clipboard
constructor(actual: ObjectNode, schemaVersion: SchemaVersion = SchemaVersion.DRAFT_2020_12)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val actual: ObjectNode
Link copied to clipboard
val schemaVersion: SchemaVersion

Functions

Link copied to clipboard
fun JsonSchema.asCustomDefinition(definitionType: CustomDefinition.DefinitionType = DefinitionType.STANDARD, attributeInclusion: CustomDefinition.AttributeInclusion = AttributeInclusion.YES): CustomDefinition
Link copied to clipboard
Link copied to clipboard
fun <R : JsonNode> get(keyword: SchemaKeyword): R?
fun <R : JsonNode> get(propertyName: String): R?
Link copied to clipboard
fun getProperties(): ObjectNode?
Link copied to clipboard
fun remove(keyword: SchemaKeyword): JsonSchema
Link copied to clipboard
fun <R : JsonNode> requiredGet(keyword: SchemaKeyword): R
fun <R : JsonNode> requiredGet(propertyName: String): R
Link copied to clipboard
fun requiredGetProperties(): ObjectNode
Link copied to clipboard
fun set(keyword: SchemaKeyword, value: JsonNode): JsonSchema
fun set(propertyName: String, value: JsonNode): JsonSchema