SchemaToCode
NGX-SCHEMA-TO-CODE

Propery name should be unique for the entity. It should be start with character and can contains charaters, numbers and underscore only. It should not contains any special character or space. It should be valid Json identifier.

property name will be use to send and received data from request/response.

{
  "customer": {                            // entity name
    "firstName": {                         // property name
      "dataType": "string",                // required metadata
      "inputType": "text",                 // optional metadata
      "dispalyName": "First Name"          // optional metadata
    },
    "lastName": {
      "dataType": "string"
    },
    ...
  }