Previous Page Next Page
Transforming a JSON Schema to a Relational Schema
  Transformation rules
  Naming rules
A JSON schema can be transformed to a relational schema. In the transformation  process, elements in the JSON schema will be transformed to either tables or  columns in tables according to the ideographic transformation rules and be  named according to the naming rules.
Transformation rules
When a JSON schema is transformed to a relational schema  automatically, RDBMS tables will be built based on the schema, and the following rules will be applied:
  - If an object class or object array element has at  least one attribute element or simple data array element, or its embedded  element can be mapped to tables, the object class or object array element will  be mapped to a table, and its attribute or simple data array element will be  mapped to columns in the table.
 
  - When mapping an attribute element to a column,  the value of its Mapped SQL Type will be set as the value of the SQL Type of  the column.
 
  - For an embedded object class or object array  element, a built-in column called foreign key will be created for the mapped  table. If there is no built-in column called primary key in its parent element  table, the column will be created. The SQL type of the columns primary key and  foreign key is SQL type 4 (64 bit Integer).
 
Naming rules
The RDBMS tables and columns in tables are named based on  the rules below:
  - For the root element, the table name is ROOT. If  the name is not unique, the character _ will be added before the name one by  one until it is unique.
  
 - For elements other than the root element, the  table name is the element name. If the table name is not unique, the names of  the ancestor elements will be added before the table name one by one and be  separated by _ until it is unique.
 
Previous Page Next Page