Interface IEntityJsonSchemaContext

    • Method Detail

      • withValidationResult

        IEntityJsonSchemaContext withValidationResult​(Object validationResult)
        Set the validation result for this context. It is not intended that this method will be called from outside the current package, it is declared public only by virture of being specified in an interface.
        Parameters:
        validationResult - An object describing the result of validation.
        Returns:
        The current object (fluent interface)
      • getSchemaSource

        Object getSchemaSource()
        Returns:
        An object describing the source of the schema. Will not return null.
      • getSchemaJsonNode

        com.fasterxml.jackson.databind.node.ObjectNode getSchemaJsonNode()
        Returns:
        The schema. Will not return null.
      • getValidationResult

        @Nullable
        Object getValidationResult()
        Returns:
        The validation result, will return null if the context is unvalidated.