Client schema (Freedom UI)
The client schema is a client module schema required to implement the front-end part of Creatio. Client schema is an element of a Creatio package. The purpose of the client schema is to save and deploy the properties of Creatio parts (application, section, pop-up box, etc.). Learn more about module types and their specificities: Module types and their specificities.
The Freedom UI page type of the client module schema represents the client schema for Creatio. Learn more about creating a Freedom UI page: Client module. Client schema belongs to the Schema
layer (the metadata layer) of the DesignTime
mode in the Creatio platform and contains the settings of the RunTime
mode layers.
View the structural items of the Schema
layer and its interaction pattern with other structural items in the Creatio platform in the figure below.
Learn more about DesignTime
and RunTime
modes: Creatio front-end architecture.
The source code of client schemas has a generic structure available below.
define("ExampleSchema", [], function() {
return {
modelConfigDiff: /**SCHEMA_MODEL_CONFIG*/{}/**SCHEMA_MODEL_CONFIG*/,
viewConfigDiff: /**SCHEMA_VIEW_CONFIG_DIFF*/[]/**SCHEMA_VIEW_CONFIG_DIFF*/,
viewModelConfigDiff: /**SCHEMA_VIEW_MODEL_CONFIG*/{}/**SCHEMA_VIEW_MODEL_CONFIG*/,
validators: /**SCHEMA_VALIDATORS*/ {} /**SCHEMA_VALIDATORS*/,
converters: /**SCHEMA_CONVERTERS*/ {} /**SCHEMA_CONVERTERS*/,
handlers: /**SCHEMA_HANDLERS*/[] /**SCHEMA_HANDLERS*/
};
});
Token comments of client schema sections are required.
View the client schema sections in the table below.
Section | Description |
---|---|
| Handles the description of the |
| Handles the generation of the |
| Handles the generation of the |
| Functions that check whether the |
| Functions that modify the value of the |
| Items of the |
Learn more about layers: Front-end Creatio architecture.
Creatio version 8.1 and later lets you store attributes in page properties in ways that let you overwrite or update array items entirely and prevent issues with non-removable filter items from predefined filters or any other object properties. The following schema sections were replaced:
viewModelConfig
schema section was replaced with the newviewModelConfigDiff
schema section.modelConfig
schema section was replaced with the newmodelConfigDiff
schema section.
Describe the client schema sections in JSON
. Implement the behavior of the validators
, converters
, handlers
schema sections in JavaScript.
Learn more about page customization: Page customization.