Interface JsonSchemaLoader

All Known Implementing Classes:
AdvancedJsonSchemaLoader, DefaultJsonSchemaLoader

public interface JsonSchemaLoader
Interface which allows implementations to control how the JSON Schema is loaded.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.everit.json.schema.Schema
    loadSchema(org.json.JSONObject rawSchema)
    Provide a JSON Schema based on the JSONObject parameter.
  • Method Details

    • loadSchema

      org.everit.json.schema.Schema loadSchema(org.json.JSONObject rawSchema)
      Provide a JSON Schema based on the JSONObject parameter.
      Parameters:
      rawSchema - JSONObject to load as Schema.
      Returns:
      Schema based on JSONObject.