Typing
Primitive types
Forest Admin Type
Javascript Type
Composite types
// Object containing two strings
{ firstName: 'String', lastName: 'String' }
// Array of strings
['String']
// Array of objects
[{ content: 'String' }]
// Object containing an array of array of numbers
{ content: [['Number']] }Composite Type
Example
How it gets displayed
Last updated