KotlinX-Schema
Toggle table of contents
0.0.1-SNAPSHOT
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
KotlinX-Schema
kotlinx-schema-generator-core
/
kotlinx.schema.generator.core.ir
/
ObjectNode
Object
Node
data
class
ObjectNode
(
val
name
:
String
,
val
properties
:
List
<
Property
>
,
val
required
:
Set
<
String
>
,
val
description
:
String
?
=
null
)
:
TypeNode
(
source
)
Object node with named properties and required set.
Members
Constructors
Object
Node
Link copied to clipboard
constructor
(
name
:
String
,
properties
:
List
<
Property
>
,
required
:
Set
<
String
>
,
description
:
String
?
=
null
)
Properties
description
Link copied to clipboard
open
override
val
description
:
String
?
name
Link copied to clipboard
val
name
:
String
properties
Link copied to clipboard
val
properties
:
List
<
Property
>
required
Link copied to clipboard
val
required
:
Set
<
String
>