ArrayPropertyDefinition
data class ArrayPropertyDefinition(val type: List<String> = listOf("array"), val description: String? = null, val nullable: Boolean? = null, val items: PropertyDefinition? = null, val minItems: UInt? = null, val maxItems: UInt? = null, val default: JsonElement? = null) : ValuePropertyDefinition(source)
Represents an array property
Constructors
Link copied to clipboard
constructor(type: List<String> = listOf("array"), description: String? = null, nullable: Boolean? = null, items: PropertyDefinition? = null, minItems: UInt? = null, maxItems: UInt? = null, default: JsonElement? = null)