ArrayProperty
Represents an array property. This extends the base Property model to represent an array of items.
Class Diagram
Section titled “Class Diagram”---
title: ArrayProperty
config:
look: handDrawn
theme: colorful
class:
hideEmptyMembersBox: true
---
classDiagram
class Property {
+string name
+string kind
+string description
+boolean required
+unknown default
+unknown example
+unknown[] enumValues
}
Property <|-- ArrayProperty
class ArrayProperty {
+string kind
+Property items
}
class Property {
+string kind
+string description
+boolean required
+unknown default
+unknown example
+unknown[] enumValues
}
ArrayProperty *-- Property
Yaml Example
Section titled “Yaml Example”items: kind: stringProperties
Section titled “Properties”| Name | Type | Description |
|---|---|---|
| kind | string | |
| items | Property | The type of items contained in the array (Related Types: ObjectProperty) |
Composed Types
Section titled “Composed Types”The following types are composed within ArrayProperty: