skema/com.eignex.skema/JsonSpec/Nullable Nullable @Serializable@SerialName(value = "Nullable")data class Nullable(val inner: JsonSpec) : JsonSpec(source)Wraps a JsonSpec so the value may also be null. Renders as {"anyOf":[<inner>, {"type":"null"}]}. Equivalent to OneOf(inner, Null) but spells the intent out. MembersMembers & Extensions Constructors Nullable Link copied to clipboard constructor(inner: JsonSpec) Properties inner Link copied to clipboard val inner: JsonSpecThe non-null spec. Functions toJsonSchema Link copied to clipboard fun JsonSpec.toJsonSchema(): JsonObjectJSON Schema fragment describing the value this primitive validates. Nullable constructor(inner: JsonSpec)(source) inner val inner: JsonSpec(source)The non-null spec.