"xsd:boolean"
"active": "xsd:boolean"
"xsd:decimal"
"age": "xsd:decimal"
"@type: "Enum"
"@values": ["red", "blue", "yellow", "green"]
"xsd:integer"
"age": "xsd:integer"
"xsd:decimal"
"age": "xsd:decimal"
"xsd:string"
"name": "xsd:string"
"xsd:dateTime"
"DOB": "xsd:dateTime"
"@type": "Optional"
declaration."Enum"
data type in the example below specifies the colors a person likes - "@id": "Colors
, "Person"
, "likes"
. This is rendered as a dropdown menu with the colors specified in the "@values"
list."age"
of a "Person"
is declared "Optional"
Select
components.work_as
linked to document class Job
lives_in
linked to a subdocument class Address
Person
consists of several nicknames - property "nickName"
of "@type": "Set"
. A set consists of zero or multiple items.+Add nickName
to add a set of nickName
properties.nickName
fields.Person
has a property works_as
defined as a set that links to the document Job
, representing a person with multiple jobs.Jobs
as shown belowPerson
has a property lived
defined as a set that links to the subdocument Address
, representing a person's address history.lived
card to expand the subdocument.Person
has two properties ordered_property
(a string data type) and has_task
(a subdocument of type "List"
.)View
mode the form is displayed in the order it was created.