package models
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class JsonSchemaArray(items: JsonSchemaValue, minItems: Int, maxItems: Int) extends JsonSchemaValue with Product with Serializable
- case class JsonSchemaNumber(minimum: Long, maximum: Long) extends JsonSchemaValue with Product with Serializable
- case class JsonSchemaObject(required: List[String], properties: Map[String, JsonSchemaValue]) extends JsonSchemaValue with Product with Serializable
- case class JsonSchemaString(minLength: Int, maxLength: Int, enum: List[String], pattern: Option[String]) extends JsonSchemaValue with Product with Serializable
- sealed trait JsonSchemaValue extends AnyRef
Value Members
- object JsonSchemaBoolean extends JsonSchemaValue with Product with Serializable
- object JsonSchemaGenerator
- object JsonSchemaValue