Packages

object CirceValidator extends Validator[Json]

Linear Supertypes
Validator[Json], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CirceValidator
  2. Validator
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def checkSchema(schema: Json, maxJsonDepth: Int): List[SchemaIssue]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def isValidSchema(schema: Json): Boolean

    Validate JSON Schema against it's own Schema Errors like empty required property or minimum property containing string will be catched

    Validate JSON Schema against it's own Schema Errors like empty required property or minimum property containing string will be catched

    Definition Classes
    Validator
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. def validate(data: Json, schema: Json): Either[ValidatorError, Unit]

    Main method, validating _non-self-describing_ instance

    Main method, validating _non-self-describing_ instance

    Definition Classes
    CirceValidatorValidator
  19. def validateSchema(schema: Json): Either[ValidatorError, Unit]
    Definition Classes
    Validator
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def checkSchema(schema: Json): List[SchemaIssue]

    Get validation errors for Schema Errors like empty required property or minimum property containing string will be catched

    Get validation errors for Schema Errors like empty required property or minimum property containing string will be catched

    schema

    JSON Schema

    returns

    list of Processing Messages with log level above warning

    Definition Classes
    CirceValidatorValidator
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2.0) Use checkSchema(schema, maxJsonDepth)

  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Validator[Json]

Inherited from AnyRef

Inherited from Any

Ungrouped