SchemaToCode
NGX-SCHEMA-TO-CODE

Data type decides how data will to send and received from api. It is an required metadata.

{
  "person": {                   // entity name
    "firstName": {              // property name
      "dataType": "string",     // string, number, boolean, array, group & file
    },
    ...
}

String,

Number,

Boolean,

Array

Some input types allow to get multiple values, which will automatically send data as array of that specific data type.

Group

File

Related Topics:

Input Types