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)

Properties

Link copied to clipboard
Link copied to clipboard
open override val description: String?

Optional description of the property.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val nullable: Boolean?

Whether the property can be null.

Link copied to clipboard

The data type of the property.