case class JsonSchemaRoot(root: JsonSchema, children: Map[java.lang.String, JsonSchema]) extends Product with Serializable
Represents a complete JSON Schema document, consisting of:
- root
The top-level JsonSchema for the document.
- children
A map of definition names to their corresponding JsonSchema instances.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JsonSchemaRoot
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new JsonSchemaRoot(root: JsonSchema, children: Map[java.lang.String, JsonSchema])
- root
The top-level JsonSchema for the document.
- children
A map of definition names to their corresponding JsonSchema instances.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val children: Map[java.lang.String, JsonSchema]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def encodeJson(indent: Option[Int] = None): CharSequence
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def productElementNames: Iterator[scala.Predef.String]
- Definition Classes
- Product
- val root: JsonSchema
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toJson: java.lang.String
Serializes the schema into compact JSON (no pretty-printing).
Serializes the schema into compact JSON (no pretty-printing).
- returns
A JSON string containing the serialized schema.
- def toJsonPretty: java.lang.String
Serializes the schema into human-readable, pretty-printed JSON.
Serializes the schema into human-readable, pretty-printed JSON.
- returns
A formatted JSON string representing the schema.
- def toSerializableSchema: SerializableJsonSchema
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])