Entities

How to use

Used only for viewing the metadata for entities.

Designer

The following diagram describes the entity used by this designer:

erDiagram
    entity {
        string name
        integer is_public
        integer is_customizable
        integer id_customization_set FK
    }
    entity many--one customization_set : entity_id_customization_set

ENTITY tab

  1. Name - The name of the entity.

PROPERTIES tab

The properties of the entity:

  1. Property name - Is the name of the property.
  2. Is required - Specify if the property is mandatory to be filled.
  3. Default value - Specify if the property has a default value if not filled.
  4. Property type - The type of property

The following diagram describes the entities used by this tab:

erDiagram
    entity_property {
        string name
        integer is_required
        integer is_customizable
        string default_value
        string property_type
        integer id_customization_set FK
        integer id_entity FK
    }
    entity_property many--one customization_set : entity_property_id_customization_set
    entity_property many--one entity : entity_property_id_entity

RELATIONSHIP tab

The relationships of the entity:

  1. Relationship name - Is the name of the relationship.
  2. Is required - Specify if the value is mandatory to be filled.
  3. Relationship Type - Specify the type of the relationship.
  4. Foreign property name - Specify if there is a custom name for the foreign property.
  5. Sort property name - Specify if there is a property that should be considered for sorting.
  6. Sort ascending - If there is ASCENDING sort or DESCENDING sort (0/1).
  7. Foreign entity - Specify the name of the foreign entity.

The following diagram describes the entities used by this tab:

erDiagram
    entity_relationship {
      string name
      integer is_required
      string relationship_type
      string cascading_rule
      string property_name
      string foreign_property_name
      string sort_property_name
      integer sort_asc
      integer id_entity FK
      integer id_foreign_entity FK
      integer id_customization_set FK
    }
    entity_relationship many--one entity : entity_relationship_id_entity
    entity_relationship many--one entity : entity_relationship_id_foreign_entity
    entity_relationship many--one customization_set : entity_relationship_id_customization_set

SECURITY tab

In the security tab you can view, edit and add the security for the current entity. See entity security for more details