Skip to main content
Version: 8.0

CustomSchemas property

Level: advanced

The CustomSchemas property is designed for connecting additional schemas to the mobile app (custom schemas with source code in JavaScript) that expand the functionality. This can be additional classes implemented by developers as part of a project, or utility classes that implement functions to simplify development, etc.

The value of the property is an array with the names of connected custom schemas.

Connect additional custom schemas for registering actions and utilities
// Connect additional custom schemas.
"CustomSchemas": [
// Custom action registration schema.
"MobileActionCheckIn",
// Custom utility schema.
"CustomMobileUtilities"
]