Structs§
Enums§
- Type
True - This is the type of output you’d like.
string
,number
,integer
,boolean
are the primitive types and should be obvious.array
andobject
are more interesting and quite powerful. They allow you to define nested structures. Forarray
, you can define the schema of the items in the array using theitems
property. Forobject
, you can define the properties of the object using theproperties
property.